Class: Quickfix::EncodedAttachment

Inherits:
StringField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Instance Method Summary collapse

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