Class: Quickfix::EncodedWarningTextLen

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EncodedWarningTextLen

Returns a new instance of EncodedWarningTextLen.



61782
61783
61784
61785
61786
61787
61788
# File 'lib/quickfix_fields.rb', line 61782

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