Class: Quickfix::EncodedListStatusText

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EncodedListStatusText

Returns a new instance of EncodedListStatusText.



5583
5584
5585
5586
5587
5588
5589
# File 'lib/quickfix_fields.rb', line 5583

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