cmdmanager.h 880 B

1234567891011121314151617181920212223242526272829303132333435
  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. } // namespace CmdManager
  28. #endif // CMDMANAGER_H