Class: Quickfix::EndSeqNo

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EndSeqNo

Returns a new instance of EndSeqNo.



58
59
60
61
62
63
64
# File 'lib/quickfix_fields.rb', line 58

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