Class: Quickfix::AllocMethod
- Inherits:
-
IntField
- Object
- IntField
- Quickfix::AllocMethod
- Defined in:
- lib/quickfix_fields.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ AllocMethod
constructor
A new instance of AllocMethod.
Constructor Details
#initialize(data = nil) ⇒ AllocMethod
Returns a new instance of AllocMethod.
3516 3517 3518 3519 3520 3521 3522 |
# File 'lib/quickfix_fields.rb', line 3516 def initialize(data = nil) if( data == nil ) super(1002) else super(1002, data) end end |
Class Method Details
.field ⇒ Object
3513 3514 3515 |
# File 'lib/quickfix_fields.rb', line 3513 def AllocMethod.field return 1002 end |