Class: Quickfix::ListStatusText

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ListStatusText

Returns a new instance of ListStatusText.



5557
5558
5559
5560
5561
5562
5563
# File 'lib/quickfix_fields.rb', line 5557

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