mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-12 07:14:37 +00:00
c0024ec6b1
Good coding practices applied only, architecture and logic were not altered.
20 lines
280 B
C++
20 lines
280 B
C++
#pragma once
|
|
|
|
#include <QObject>
|
|
|
|
#include "interfaces/controller_interface.h"
|
|
#include "signals.h"
|
|
|
|
namespace Modules::Main
|
|
{
|
|
|
|
class Controller : public QObject, public IController
|
|
{
|
|
public:
|
|
using QObject::QObject;
|
|
|
|
void init() override;
|
|
};
|
|
|
|
} // namespace Modules::Main
|