| 52 | } |
| 53 | |
| 54 | std::string cutNameSpace(std::string &className) { |
| 55 | int colonPos = className.find_last_of("::"); |
| 56 | if (colonPos != std::string::npos) |
| 57 | return className.substr(colonPos+1); |
| 58 | else |
| 59 | return className; |
| 60 | } |
| 61 | |
| 62 | void linkInterestingDefinitions(std::ofstream &myfile, std::string linkFile, std::string &interestingDefitions) |
| 63 | { |
no outgoing calls
no test coverage detected