Class: Quickfix::EncodedAttachment
- Inherits:
-
StringField
- Object
- StringField
- Quickfix::EncodedAttachment
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ EncodedAttachment
constructor
A new instance of EncodedAttachment.
Constructor Details
#initialize(data = nil) ⇒ EncodedAttachment
Returns a new instance of EncodedAttachment.
40553 40554 40555 40556 40557 40558 40559 |
# File 'lib/quickfix_fields.rb', line 40553 def initialize(data = nil) if( data == nil ) super(2112) else super(2112, data) end end |