Files
status-app/src-cpp/app/modules/main/controller.cpp
T

17 lines
220 B
C++
Raw Normal View History

2022-01-20 10:48:57 -04:00
#include <QDebug>
2022-02-14 15:38:41 +01:00
#include "controller.h"
2022-01-20 10:48:57 -04:00
namespace Modules
{
namespace Main
{
2022-02-14 15:38:41 +01:00
Controller::Controller(QObject* parent)
: QObject(parent)
2022-01-20 10:48:57 -04:00
{ }
void Controller::init() { }
} // namespace Main
2022-02-14 15:38:41 +01:00
} // namespace Modules