mirror of
https://github.com/ysoftdevs/Testa.git
synced 2026-01-11 14:20:23 +01:00
21 lines
466 B
C++
21 lines
466 B
C++
#ifndef APPLICATIONCONTROLLER_H
|
|
#define APPLICATIONCONTROLLER_H
|
|
|
|
#include <QObject>
|
|
|
|
#include "webengineview.h"
|
|
#include "actionreceiver.h"
|
|
|
|
class ApplicationController : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ApplicationController(WebEngineView *webEngineView, ActionReceiver *actionReceiver, QObject *parent = 0);
|
|
void test();
|
|
private:
|
|
WebEngineView* webEngineView;
|
|
ActionReceiver* actionReceiver;
|
|
};
|
|
|
|
#endif // APPLICATIONCONTROLLER_H
|