| 39 | //TODO |
| 40 | std::string fileRepoUrl(const std::string &file) const { return {}; } |
| 41 | enum Type { Normal, |
| 42 | Internal, //includes and stuffs |
| 43 | External, //links to external projects somewhere else, do not generate refs or anything, |
| 44 | // and link to a different ref source |
| 45 | } type = Normal; |
| 46 | |
| 47 | ProjectInfo(std::string name, std::string source_path, Type t = Normal) |
| 48 | : name(std::move(name)), source_path(std::move(source_path)), type(t) {} |
nothing calls this directly
no outgoing calls
no test coverage detected