Class: Quickfix::HaltReasonInt

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

Returns a new instance of HaltReasonInt.



18752
18753
18754
18755
18756
18757
18758
# File 'lib/quickfix_fields.rb', line 18752

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

Class Method Details

.fieldObject



18749
18750
18751
# File 'lib/quickfix_fields.rb', line 18749

def HaltReasonInt.field
  return 327
end