Files
amnezia-client/client/configurators/configurator_base.h
T

22 lines
421 B
C++
Raw Normal View History

2022-08-25 17:35:28 +03:00
#ifndef CONFIGURATORBASE_H
#define CONFIGURATORBASE_H
#include <QObject>
class Settings;
#include "containers/containers_defs.h"
#include "core/defs.h"
class ConfiguratorBase : public QObject
{
Q_OBJECT
public:
explicit ConfiguratorBase(std::shared_ptr<Settings> settings, QObject *parent = nullptr);
2022-08-25 17:35:28 +03:00
protected:
std::shared_ptr<Settings> m_settings;
};
#endif // CONFIGURATORBASE_H