Class: Quickfix::PegOffsetValue

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PegOffsetValue

Returns a new instance of PegOffsetValue.



8950
8951
8952
8953
8954
8955
8956
# File 'lib/quickfix_fields.rb', line 8950

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