Class: Quickfix::MsgType

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MsgType



4621
4622
4623
4624
4625
4626
4627
# File 'lib/quickfix_fields.rb', line 4621

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

Class Method Details

.fieldObject



4618
4619
4620
# File 'lib/quickfix_fields.rb', line 4618

def MsgType.field
	return 35
end