Class: Quickfix::Account

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Account

Returns a new instance of Account.



929
930
931
932
933
934
935
# File 'lib/quickfix_fields.rb', line 929

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