Class: Quickfix::NoAllocs

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoAllocs

Returns a new instance of NoAllocs.



1709
1710
1711
1712
1713
1714
1715
# File 'lib/quickfix_fields.rb', line 1709

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