Class: Quickfix::WarningText

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

Returns a new instance of WarningText.



61756
61757
61758
61759
61760
61761
61762
# File 'lib/quickfix_fields.rb', line 61756

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

Class Method Details

.fieldObject



61753
61754
61755
# File 'lib/quickfix_fields.rb', line 61753

def WarningText.field
	return 2520
end