Class: Quickfix::EventType

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EventType

Returns a new instance of EventType.



12694
12695
12696
12697
12698
12699
12700
# File 'lib/quickfix_fields.rb', line 12694

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

Class Method Details

.fieldObject



12691
12692
12693
# File 'lib/quickfix_fields.rb', line 12691

def EventType.field
	return 865
end