Class: Quickfix::NoOrders

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ NoOrders

Returns a new instance of NoOrders.



1644
1645
1646
1647
1648
1649
1650
# File 'lib/quickfix_fields.rb', line 1644

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

Class Method Details

.fieldObject



1641
1642
1643
# File 'lib/quickfix_fields.rb', line 1641

def NoOrders.field
  return 73
end