Class: Quickfix::UnitOfMeasure
- Inherits:
-
StringField
- Object
- StringField
- Quickfix::UnitOfMeasure
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ UnitOfMeasure
constructor
A new instance of UnitOfMeasure.
Constructor Details
#initialize(data = nil) ⇒ UnitOfMeasure
Returns a new instance of UnitOfMeasure.
15164 15165 15166 15167 15168 15169 15170 |
# File 'lib/quickfix_fields.rb', line 15164 def initialize(data = nil) if( data == nil ) super(996) else super(996, data) end end |