Class: Quickfix::MaxFloor
- Inherits:
-
DoubleField
- Object
- DoubleField
- Quickfix::MaxFloor
- Defined in:
- lib/quickfix_fields.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ MaxFloor
constructor
A new instance of MaxFloor.
Constructor Details
#initialize(data = nil) ⇒ MaxFloor
Returns a new instance of MaxFloor.
18063 18064 18065 18066 18067 18068 18069 |
# File 'lib/quickfix_fields.rb', line 18063 def initialize(data = nil) if( data == nil ) super(111) else super(111, data) end end |
Class Method Details
.field ⇒ Object
18060 18061 18062 |
# File 'lib/quickfix_fields.rb', line 18060 def MaxFloor.field return 111 end |