Class: Quickfix::EncodedAttachmentLen
- Inherits:
-
IntField
- Object
- IntField
- Quickfix::EncodedAttachmentLen
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ EncodedAttachmentLen
constructor
A new instance of EncodedAttachmentLen.
Constructor Details
#initialize(data = nil) ⇒ EncodedAttachmentLen
Returns a new instance of EncodedAttachmentLen.
40540 40541 40542 40543 40544 40545 40546 |
# File 'lib/quickfix_fields.rb', line 40540 def initialize(data = nil) if( data == nil ) super(2111) else super(2111, data) end end |