Class: Quickfix::AllocRejCode

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AllocRejCode

Returns a new instance of AllocRejCode.



1839
1840
1841
1842
1843
1844
1845
# File 'lib/quickfix_fields.rb', line 1839

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