| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include "cli/command.h" | ||
| 4 | |||
| 5 | namespace lython { | ||
| 6 | struct ProfileCmd: public Command { | ||
| 7 | ProfileCmd(): Command("profile") {} | ||
| 8 | |||
| 9 | virtual argparse::ArgumentParser* parser() { | ||
| 10 | 8 | argparse::ArgumentParser* p = new_parser(); | |
| 11 | 8 | return p; | |
| 12 | } | ||
| 13 | |||
| 14 | virtual int main(argparse::ArgumentParser const& args) { | ||
| 15 | // | ||
| 16 | ✗ | return 0; | |
| 17 | }; | ||
| 18 | }; | ||
| 19 | |||
| 20 | } // namespace lython | ||
| 21 |