1234567891011121314151617181920212223242526272829303132333435 |
- #include "projectmanager.h"
- projectManager::projectManager()
- {
- setId();
- }
- int projectManager::createProject(std::string id,std::string name,std::string desc,std::string path)
- {
- }
- int projectManager::delProject(std::string id)
- {
- }
- int projectManager::queryProject(std::string id)
- {
- }
- int projectManager::updateProject(std::string id,std::string name,std::string desc,std::string path)
- {
- }
- void projectManager::setId()
- {
- mId = "aaa";
- }
|