Class: Quickfix::Currency
- Inherits:
-
StringField
- Object
- StringField
- Quickfix::Currency
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ Currency
constructor
A new instance of Currency.
Constructor Details
#initialize(data = nil) ⇒ Currency
Returns a new instance of Currency.
1059 1060 1061 1062 1063 1064 1065 |
# File 'lib/quickfix_fields.rb', line 1059 def initialize(data = nil) if( data == nil ) super(15) else super(15, data) end end |