Class: Quickfix::EncodedSubject

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EncodedSubject

Returns a new instance of EncodedSubject.



14982
14983
14984
14985
14986
14987
14988
# File 'lib/quickfix_fields.rb', line 14982

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

Class Method Details

.fieldObject



14979
14980
14981
# File 'lib/quickfix_fields.rb', line 14979

def EncodedSubject.field
  return 357
end