Class: Quickfix::Price
- Inherits:
-
DoubleField
- Object
- DoubleField
- Quickfix::Price
- Defined in:
- lib/quickfix_fields.rb
Class Method Summary collapse
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.
16126 16127 16128 16129 16130 16131 16132 |
# File 'lib/quickfix_fields.rb', line 16126 def initialize(data = nil) if( data == nil ) super(44) else super(44, data) end end |
Class Method Details
.field ⇒ Object
16123 16124 16125 |
# File 'lib/quickfix_fields.rb', line 16123 def Price.field return 44 end |