Revision 02d622602e0552f8bf6df13762acf4446f02db47 authored by Konrad Werys on 14 November 2018, 11:57:33 UTC, committed by Konrad Werys on 14 November 2018, 12:01:08 UTC
1 parent 09dae69
OxFactoryOfFunctions.h
/*!
* \file OxFactoryOfFunctions.h
* \author Konrad Werys
* \date 2018/08/18
*/
#ifndef Tomato_OXFACTORYOFFUNCTIONS_H
#define Tomato_OXFACTORYOFFUNCTIONS_H
#include "CmakeConfigForTomato.h"
#include "OxFunctionsT1Basic.h"
#ifdef USE_PRIVATE_NR2
#include "OxFunctionsT1CalculatorShmolli.h"
#endif
namespace Ox {
template<typename TYPE>
struct TomatoOptions;
#ifdef USE_PRIVATE_NR2
static const char *functionsTypeNames[] = {
"FunctionsBasic",
"FunctionsShmolli",
};
enum functionsType_t {
FunctionsBasic = 0,
FunctionsShmolli = 1,
lastFunctorType = FunctionsShmolli
};
#else
static const char *functionsTypeNames[] = {
"FunctionsBasic",
};
enum functionsType_t {
FunctionsBasic = 0,
lastFunctorType = FunctionsBasic
};
#endif
template<typename TYPE>
class FactoryOfFunctions {
public:
static FunctionsT1<TYPE>* newByFactory(TomatoOptions<TYPE> *opts){
switch (opts->functions_type){
case FunctionsBasic: {
return new FunctionsT1Basic<TYPE>();
}
#ifdef USE_PRIVATE_NR2
case FunctionsShmolli: {
return new FunctionsT1CalculatorShmolli<TYPE>();
}
#endif
default:
return 0;
}
}
};
} // namespace Ox
#endif //Tomato_OXFACTORYOFFUNCTIONS_H
Computing file changes ...