Class: Quickfix::PegOffsetValue

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

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

Class Method Details

.fieldObject



8947
8948
8949
# File 'lib/quickfix_fields.rb', line 8947

def PegOffsetValue.field
  return 211
end