Class: Quickfix::AllocStatus

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) ⇒ 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

Class Method Details

.fieldObject



1823
1824
1825
# File 'lib/quickfix_fields.rb', line 1823

def AllocStatus.field
  return 87
end