#ifndef ALGORITHMFACTORY_H #define ALGORITHMFACTORY_H #include <QString> #include "algorithmbase.h" class AlgorithmFactory { public: static AlgorithmBase* create(const QString& type); }; #endif // ALGORITHMFACTORY_H