Class: Quickfix::HaltReasonInt

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ HaltReasonInt

Returns a new instance of HaltReasonInt.



864
865
866
867
868
869
870
# File 'lib/quickfix_fields.rb', line 864

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

Class Method Details

.fieldObject



861
862
863
# File 'lib/quickfix_fields.rb', line 861

def HaltReasonInt.field
	return 327
end