Class: Quickfix::UnderlyingStreamDesc

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingStreamDesc

Returns a new instance of UnderlyingStreamDesc.



34339
34340
34341
34342
34343
34344
34345
# File 'lib/quickfix_fields.rb', line 34339

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