Class: Quickfix::UnderlyingComplexEventType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingComplexEventType

Returns a new instance of UnderlyingComplexEventType.



26786
26787
26788
26789
26790
26791
26792
# File 'lib/quickfix_fields.rb', line 26786

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