Class: Quickfix::StreamDesc

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StreamDesc

Returns a new instance of StreamDesc.



27969
27970
27971
27972
27973
27974
27975
# File 'lib/quickfix_fields.rb', line 27969

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