Class: Quickfix::UnderlyingStreamXID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingStreamXID

Returns a new instance of UnderlyingStreamXID.



56478
56479
56480
56481
56482
56483
56484
# File 'lib/quickfix_fields.rb', line 56478

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