| 35 | std::map<std::string, std::string, std::greater<std::string> > project_map; |
| 36 | |
| 37 | struct FolderInfo { |
| 38 | // std::string name; |
| 39 | std::map<std::string, std::shared_ptr<FolderInfo>> subfolders; |
| 40 | }; |
| 41 | |
| 42 | std::string extractMetaFromHTML(std::string metaName, std::string fullPath) { |
| 43 | std::ifstream filein(fullPath, std::ifstream::in); |
nothing calls this directly
no outgoing calls
no test coverage detected