Class: Quickfix::MsgType

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

Instance Method Summary collapse

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