algorithmfactory.h 223 B

123456789101112
  1. #ifndef ALGORITHMFACTORY_H
  2. #define ALGORITHMFACTORY_H
  3. #include <QString>
  4. #include "algorithmbase.h"
  5. class AlgorithmFactory {
  6. public:
  7. static AlgorithmBase* create(const QString& type);
  8. };
  9. #endif // ALGORITHMFACTORY_H