Class: Quickfix::NoLegEvents

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoLegEvents

Returns a new instance of NoLegEvents.



26955
26956
26957
26958
26959
26960
26961
# File 'lib/quickfix_fields.rb', line 26955

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