Class: Quickfix::ExerciseMethod

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CharField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ ExerciseMethod

Returns a new instance of ExerciseMethod.



10224
10225
10226
10227
10228
10229
10230
# File 'lib/quickfix_fields.rb', line 10224

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

Class Method Details

.fieldObject



10221
10222
10223
# File 'lib/quickfix_fields.rb', line 10221

def ExerciseMethod.field
  return 747
end