Class: Quickfix::NumOfSimpleInstruments

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NumOfSimpleInstruments

Returns a new instance of NumOfSimpleInstruments.



22041
22042
22043
22044
22045
22046
22047
# File 'lib/quickfix_fields.rb', line 22041

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