Class: FooterRecord
- Inherits:
-
BiffRecord
- Object
- BiffRecord
- FooterRecord
- Defined in:
- lib/surpass/biff_record.rb
Overview
Semantic is equal to HEADER record
Constant Summary collapse
- RECORD_ID =
0x0015
Constants inherited from BiffRecord
BiffRecord::BIFF_LIMIT, BiffRecord::CONTINUE_RECORD_ID
Instance Attribute Summary
Attributes inherited from BiffRecord
Instance Method Summary collapse
-
#initialize(str) ⇒ FooterRecord
constructor
A new instance of FooterRecord.
Methods inherited from BiffRecord
Constructor Details
#initialize(str) ⇒ FooterRecord
Returns a new instance of FooterRecord.
1811 1812 1813 |
# File 'lib/surpass/biff_record.rb', line 1811 def initialize(str) @record_data = [str.length, 0].pack('vC') + str end |