Class: Quickfix::NoLegs

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoLegs

Returns a new instance of NoLegs.



7572
7573
7574
7575
7576
7577
7578
# File 'lib/quickfix_fields.rb', line 7572

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