Class: Quickfix::BodyLength

Inherits:
IntField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ BodyLength

Returns a new instance of BodyLength.



32
33
34
35
36
37
38
# File 'lib/quickfix_fields.rb', line 32

def initialize(data = nil)
	if( data == nil )
		super(9)
	else
		super(9, data)
	end
end