Class: Quickfix::StrategyParameterName

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StrategyParameterName

Returns a new instance of StrategyParameterName.



12928
12929
12930
12931
12932
12933
12934
# File 'lib/quickfix_fields.rb', line 12928

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