Class: Quickfix::StatusText

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StatusText

Returns a new instance of StatusText.



12538
12539
12540
12541
12542
12543
12544
# File 'lib/quickfix_fields.rb', line 12538

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