Class: Quickfix::Signature
- Inherits:
-
StringField
- Object
- StringField
- Quickfix::Signature
- Defined in:
- lib/quickfix_fields.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ Signature
constructor
A new instance of Signature.
Constructor Details
#initialize(data = nil) ⇒ Signature
Returns a new instance of Signature.
17244 17245 17246 17247 17248 17249 17250 |
# File 'lib/quickfix_fields.rb', line 17244 def initialize(data = nil) if( data == nil ) super(89) else super(89, data) end end |
Class Method Details
.field ⇒ Object
17241 17242 17243 |
# File 'lib/quickfix_fields.rb', line 17241 def Signature.field return 89 end |