Class: Quickfix::AcctIDSource

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AcctIDSource

Returns a new instance of AcctIDSource.



9106
9107
9108
9109
9110
9111
9112
# File 'lib/quickfix_fields.rb', line 9106

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