Class: Quickfix::ExerciseMethod

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

Instance Method Summary collapse

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