Class: Quickfix::OffsetInstruction

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

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

Class Method Details

.fieldObject



24222
24223
24224
# File 'lib/quickfix_fields.rb', line 24222

def OffsetInstruction.field
  return 1849
end