Class: Quickfix::EncodedListStatusTextLen

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EncodedListStatusTextLen

Returns a new instance of EncodedListStatusTextLen.



5570
5571
5572
5573
5574
5575
5576
# File 'lib/quickfix_fields.rb', line 5570

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