Class: Quickfix::ComplexEventXID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ComplexEventXID

Returns a new instance of ComplexEventXID.



41450
41451
41452
41453
41454
41455
41456
# File 'lib/quickfix_fields.rb', line 41450

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