Class: Quickfix::HaltReasonInt

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

Instance Method Summary collapse

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