cmdmanager.h 954 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #ifndef CMDMANAGER_H
  2. #define CMDMANAGER_H
  3. #include "qmlhandler.h"
  4. #include <json/json.h>
  5. #include <map>
  6. #include <string>
  7. #include <vector>
  8. namespace CmdManager {
  9. void init();
  10. void setQmlHandler(QMLHandler *q);
  11. void executeCmd(std::string cmd, Json::Value root);
  12. void handleError(Json::Value root);
  13. void handleStatus(Json::Value root);
  14. void handleClose(Json::Value root);
  15. void handleList(Json::Value root);
  16. void handleConnect(Json::Value root);
  17. void handleVersion(Json::Value root);
  18. void handleLogin(Json::Value root);
  19. void handleSignup(Json::Value root);
  20. void handlePut(Json::Value root);
  21. void handlePutData(Json::Value root);
  22. void handleGet(Json::Value root);
  23. void handleGetData(Json::Value root);
  24. void handleDeleteMe(Json::Value root);
  25. void handleDeleteFile(Json::Value root);
  26. void handleNotifications(Json::Value root);
  27. void handleQueue(Json::Value root);
  28. void handleDequeue(Json::Value root);
  29. } // namespace CmdManager
  30. #endif // CMDMANAGER_H