Method: Quickfix::IOIQty#initialize

Defined in:
lib/quickfix_fields.rb

#initialize(data = nil) ⇒ IOIQty

Returns a new instance of IOIQty.



8378
8379
8380
8381
8382
8383
8384
# File 'lib/quickfix_fields.rb', line 8378

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