Patronum/Tests/defaultcontroller.h

21 lines
340 B
C
Raw Normal View History

2020-05-06 23:23:46 +03:00
#ifndef DEFAULTCONTROLLER_H
#define DEFAULTCONTROLLER_H
#include <patronum.h>
class DefaultController : public Patronum::Controller
{
public:
DefaultController();
2020-05-07 16:08:56 +03:00
QVariantMap getResponce();
protected:
void handleResponce(const QVariantMap &feature);
private:
QVariantMap _receiveData;
2020-05-06 23:23:46 +03:00
};
#endif // DEFAULTCONTROLLER_H