| 17 | } // namespace cl_options |
| 18 | |
| 19 | class CommandLineParser |
| 20 | { |
| 21 | |
| 22 | QCommandLineParser cl_parser; |
| 23 | |
| 24 | public: |
| 25 | CommandLineParser(); |
| 26 | |
| 27 | void process(const QCoreApplication &app); |
| 28 | |
| 29 | QString value(const QCommandLineOption &opt); |
| 30 | |
| 31 | bool isSet(const QCommandLineOption &opt); |
| 32 | }; |
| 33 | |
| 34 | } // namespace cpprofiler |
nothing calls this directly
no outgoing calls
no test coverage detected