Class: Quickfix::UnderlyingComplexEventCondition

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingComplexEventCondition

Returns a new instance of UnderlyingComplexEventCondition.



26864
26865
26866
26867
26868
26869
26870
# File 'lib/quickfix_fields.rb', line 26864

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