| 87 | } |
| 88 | |
| 89 | std::string getFileName(std::string const &path) |
| 90 | { |
| 91 | const size_t b = (path.rfind("/") == std::string::npos) ? 0 : path.rfind("/") + 1; |
| 92 | return path.substr(b, path.rfind(".") - b); |
| 93 | } |
| 94 | |
| 95 | void printCommandLine(int argc, char** argv) |
| 96 | { |