mirror of
https://github.com/QuasarApp/Patronum.git
synced 2025-04-27 08:04:32 +00:00
23 lines
411 B
C++
23 lines
411 B
C++
#include "defaultcontroller.h"
|
|
|
|
DefaultController::DefaultController():
|
|
Patronum::Controller() {
|
|
|
|
}
|
|
|
|
QVariantMap DefaultController::getResponce() {
|
|
return _receiveData;
|
|
}
|
|
|
|
bool DefaultController::isFinished() const {
|
|
return _finished;
|
|
}
|
|
|
|
void DefaultController::handleResponce(const QVariantMap &feature) {
|
|
_receiveData = feature;
|
|
}
|
|
|
|
void DefaultController::finished() {
|
|
_finished = true;
|
|
}
|