#ifndef CONFIGURATORBASE_H #define CONFIGURATORBASE_H #include class Settings; class ServerController; #include "containers/containers_defs.h" #include "core/defs.h" class ConfiguratorBase : public QObject { Q_OBJECT public: explicit ConfiguratorBase(std::shared_ptr settings, std::shared_ptr serverController, QObject *parent = nullptr); protected: std::shared_ptr m_settings; std::shared_ptr m_serverController; }; #endif // CONFIGURATORBASE_H