Class: FooterRecord

Inherits:
BiffRecord show all
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

#record_data

Instance Method Summary collapse

Methods inherited from BiffRecord

#record_header, #to_biff

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