Class: Quickfix::PriceRangeValue
- Inherits:
-
DoubleField
- Object
- DoubleField
- Quickfix::PriceRangeValue
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ PriceRangeValue
constructor
A new instance of PriceRangeValue.
Constructor Details
#initialize(data = nil) ⇒ PriceRangeValue
Returns a new instance of PriceRangeValue.
62198 62199 62200 62201 62202 62203 62204 |
# File 'lib/quickfix_fields.rb', line 62198 def initialize(data = nil) if( data == nil ) super(2553) else super(2553, data) end end |