Class: Quickfix::AssetClass

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AssetClass

Returns a new instance of AssetClass.



25382
25383
25384
25385
25386
25387
25388
# File 'lib/quickfix_fields.rb', line 25382

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