Class: Quickfix::Account
- Inherits:
-
StringField
- Object
- StringField
- Quickfix::Account
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ Account
constructor
A new instance of Account.
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 |