Class: Quickfix::NoExecs

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ NoExecs

Returns a new instance of NoExecs.



2112
2113
2114
2115
2116
2117
2118
# File 'lib/quickfix_fields.rb', line 2112

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

Class Method Details

.fieldObject



2109
2110
2111
# File 'lib/quickfix_fields.rb', line 2109

def NoExecs.field
  return 124
end