Class: Quickfix::AssetGroup

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AssetGroup

Returns a new instance of AssetGroup.



61158
61159
61160
61161
61162
61163
61164
# File 'lib/quickfix_fields.rb', line 61158

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