Class: Quickfix::OffsetInstruction

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OffsetInstruction

Returns a new instance of OffsetInstruction.



24225
24226
24227
24228
24229
24230
24231
# File 'lib/quickfix_fields.rb', line 24225

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