Class: Quickfix::LegStreamText

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LegStreamText

Returns a new instance of LegStreamText.



30517
30518
30519
30520
30521
30522
30523
# File 'lib/quickfix_fields.rb', line 30517

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