Class: Quickfix::NoExecs

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoExecs

Returns a new instance of NoExecs.



7689
7690
7691
7692
7693
7694
7695
# File 'lib/quickfix_fields.rb', line 7689

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

Class Method Details

.fieldObject



7686
7687
7688
# File 'lib/quickfix_fields.rb', line 7686

def NoExecs.field
	return 124
end