Class: Quickfix::AllocStatus

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AllocStatus

Returns a new instance of AllocStatus.



1826
1827
1828
1829
1830
1831
1832
# File 'lib/quickfix_fields.rb', line 1826

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