mirror of
https://github.com/QuasarApp/Patronum.git
synced 2025-04-27 16:14:32 +00:00
21 lines
340 B
C++
21 lines
340 B
C++
#ifndef DEFAULTCONTROLLER_H
|
|
#define DEFAULTCONTROLLER_H
|
|
#include <patronum.h>
|
|
|
|
class DefaultController : public Patronum::Controller
|
|
{
|
|
public:
|
|
DefaultController();
|
|
QVariantMap getResponce();
|
|
|
|
protected:
|
|
void handleResponce(const QVariantMap &feature);
|
|
|
|
private:
|
|
QVariantMap _receiveData;
|
|
|
|
|
|
};
|
|
|
|
#endif // DEFAULTCONTROLLER_H
|