Class: Quickfix::StreamXID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StreamXID

Returns a new instance of StreamXID.



46169
46170
46171
46172
46173
46174
46175
# File 'lib/quickfix_fields.rb', line 46169

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