Class: Quickfix::LegEventType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LegEventType

Returns a new instance of LegEventType.



26968
26969
26970
26971
26972
26973
26974
# File 'lib/quickfix_fields.rb', line 26968

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