| 94 | } |
| 95 | |
| 96 | std::string getMethodName(std::string FullMethodName) { |
| 97 | std::vector<std::string> Tokens = util::split(FullMethodName, "::"); |
| 98 | return Tokens.back(); |
| 99 | } |
| 100 | |
| 101 | std::string getIndent(unsigned count) { |
| 102 | std::string ReturnIndent = ""; |