mirror of
https://github.com/QuasarApp/Patronum.git
synced 2025-04-26 15:44:32 +00:00
23 lines
417 B
C++
23 lines
417 B
C++
#ifndef DEFAULTCONTROLLER_H
|
|
#define DEFAULTCONTROLLER_H
|
|
#include <patronum.h>
|
|
|
|
class DefaultController : public Patronum::Controller
|
|
{
|
|
public:
|
|
DefaultController();
|
|
QVariantMap getResponce();
|
|
bool isFinished() const;
|
|
|
|
protected:
|
|
void handleResponce(const QVariantMap &feature);
|
|
void finished();
|
|
|
|
private:
|
|
QVariantMap _receiveData;
|
|
bool _finished = false;
|
|
|
|
};
|
|
|
|
#endif // DEFAULTCONTROLLER_H
|