Class: Quickfix::Currency
- Inherits:
-
StringField
- Object
- StringField
- Quickfix::Currency
- Defined in:
- lib/quickfix_fields.rb
Class Method Summary collapse
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.
1423 1424 1425 1426 1427 1428 1429 |
# File 'lib/quickfix_fields.rb', line 1423 def initialize(data = nil) if( data == nil ) super(15) else super(15, data) end end |
Class Method Details
.field ⇒ Object
1420 1421 1422 |
# File 'lib/quickfix_fields.rb', line 1420 def Currency.field return 15 end |