Class: Quickfix::MsgType

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) ⇒ MsgType

Returns a new instance of MsgType.



84
85
86
87
88
89
90
# File 'lib/quickfix_fields.rb', line 84

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

Class Method Details

.fieldObject



81
82
83
# File 'lib/quickfix_fields.rb', line 81

def MsgType.field
  return 35
end