2022-02-22 08:02:34 +00:00
|
|
|
#pragma once
|
2022-01-20 14:48:57 +00:00
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
2022-02-14 14:38:41 +00:00
|
|
|
#include "interfaces/controller_interface.h"
|
|
|
|
#include "signals.h"
|
|
|
|
|
2022-02-16 21:51:04 +00:00
|
|
|
namespace Modules::Main
|
2022-01-20 14:48:57 +00:00
|
|
|
{
|
|
|
|
|
2022-02-16 21:51:04 +00:00
|
|
|
class Controller : public QObject, public IController
|
2022-01-20 14:48:57 +00:00
|
|
|
{
|
|
|
|
public:
|
2022-02-22 08:02:34 +00:00
|
|
|
using QObject::QObject;
|
2022-01-20 14:48:57 +00:00
|
|
|
|
2022-02-14 14:38:41 +00:00
|
|
|
void init() override;
|
2022-01-20 14:48:57 +00:00
|
|
|
};
|
|
|
|
|
2022-02-16 21:51:04 +00:00
|
|
|
} // namespace Modules::Main
|