Class: Quickfix::SideValueInd

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SideValueInd

Returns a new instance of SideValueInd.



4998
4999
5000
5001
5002
5003
5004
# File 'lib/quickfix_fields.rb', line 4998

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