cmdmanager.h 800 B

123456789101112131415161718192021222324252627282930313233
  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 handleStatus(Json::Value root);
  13. void handleClose(Json::Value root);
  14. void handleList(Json::Value root);
  15. void handleConnect(Json::Value root);
  16. void handleVersion(Json::Value root);
  17. void handleLogin(Json::Value root);
  18. void handleSignup(Json::Value root);
  19. void handlePut(Json::Value root);
  20. void handlePutData(Json::Value root);
  21. void handleGet(Json::Value root);
  22. void handleGetData(Json::Value root);
  23. void handleDeleteMe(Json::Value root);
  24. void handleDeleteFile(Json::Value root);
  25. } // namespace CmdManager
  26. #endif // CMDMANAGER_H