Class: Quickfix::Price
- Inherits:
-
DoubleField
- Object
- DoubleField
- Quickfix::Price
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ Price
constructor
A new instance of Price.
Constructor Details
#initialize(data = nil) ⇒ Price
Returns a new instance of Price.
1371 1372 1373 1374 1375 1376 1377 |
# File 'lib/quickfix_fields.rb', line 1371 def initialize(data = nil) if( data == nil ) super(44) else super(44, data) end end |