Class: Quickfix::QuantityType
- Inherits:
-
IntField
- Object
- IntField
- Quickfix::QuantityType
- Defined in:
- lib/quickfix_fields.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ QuantityType
constructor
A new instance of QuantityType.
Constructor Details
#initialize(data = nil) ⇒ QuantityType
Returns a new instance of QuantityType.
3126 3127 3128 3129 3130 3131 3132 |
# File 'lib/quickfix_fields.rb', line 3126 def initialize(data = nil) if( data == nil ) super(465) else super(465, data) end end |
Class Method Details
.field ⇒ Object
3123 3124 3125 |
# File 'lib/quickfix_fields.rb', line 3123 def QuantityType.field return 465 end |