projectmanager.cpp 456 B

1234567891011121314151617181920212223242526272829303132333435
  1. #include "projectmanager.h"
  2. projectManager::projectManager()
  3. {
  4. setId();
  5. }
  6. int projectManager::createProject(std::string id,std::string name,std::string desc,std::string path)
  7. {
  8. }
  9. int projectManager::delProject(std::string id)
  10. {
  11. }
  12. int projectManager::queryProject(std::string id)
  13. {
  14. }
  15. int projectManager::updateProject(std::string id,std::string name,std::string desc,std::string path)
  16. {
  17. }
  18. void projectManager::setId()
  19. {
  20. mId = "aaa";
  21. }