Class: Quickfix::EncodedAttachment

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ 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

Class Method Details

.fieldObject



40550
40551
40552
# File 'lib/quickfix_fields.rb', line 40550

def EncodedAttachment.field
  return 2112
end