Class: Quickfix::AllocID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AllocID

Returns a new instance of AllocID.



1605
1606
1607
1608
1609
1610
1611
# File 'lib/quickfix_fields.rb', line 1605

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