123456789101112131415161718192021222324252627282930313233 |
- #ifndef CMDMANAGER_H
- #define CMDMANAGER_H
- #include "qmlhandler.h"
- #include <json/json.h>
- #include <map>
- #include <string>
- #include <vector>
- namespace CmdManager {
- void init();
- void setQmlHandler(QMLHandler *q);
- void executeCmd(std::string cmd, Json::Value root);
- void handleStatus(Json::Value root);
- void handleClose(Json::Value root);
- void handleList(Json::Value root);
- void handleConnect(Json::Value root);
- void handleVersion(Json::Value root);
- void handleLogin(Json::Value root);
- void handleSignup(Json::Value root);
- void handlePut(Json::Value root);
- void handlePutData(Json::Value root);
- void handleGet(Json::Value root);
- void handleGetData(Json::Value root);
- void handleDeleteMe(Json::Value root);
- void handleDeleteFile(Json::Value root);
- } // namespace CmdManager
- #endif // CMDMANAGER_H
|