Class: Quickfix::RefSeqNum

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RefSeqNum

Returns a new instance of RefSeqNum.



123
124
125
126
127
128
129
# File 'lib/quickfix_fields.rb', line 123

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