Class: Quickfix::MessageEncoding

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

Returns a new instance of MessageEncoding.



513
514
515
516
517
518
519
# File 'lib/quickfix_fields.rb', line 513

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

Class Method Details

.fieldObject



510
511
512
# File 'lib/quickfix_fields.rb', line 510

def MessageEncoding.field
	return 347
end