Class: Quickfix::SideValue2

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SideValue2

Returns a new instance of SideValue2.



4946
4947
4948
4949
4950
4951
4952
# File 'lib/quickfix_fields.rb', line 4946

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