Class: Quickfix::EncodedHeadline

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EncodedHeadline

Returns a new instance of EncodedHeadline.



7650
7651
7652
7653
7654
7655
7656
# File 'lib/quickfix_fields.rb', line 7650

def initialize(data = nil)
  if( data == nil )
    super(359)
  else
    super(359, data)
  end
end

Class Method Details

.fieldObject



7647
7648
7649
# File 'lib/quickfix_fields.rb', line 7647

def EncodedHeadline.field
  return 359
end