| 867 | // Cli implementation |
| 868 | |
| 869 | inline Cli::Cli(std::unique_ptr<Menu> _rootMenu, std::unique_ptr<HistoryStorage> historyStorage) : |
| 870 | globalHistoryStorage{std::move(historyStorage)}, |
| 871 | rootMenu{std::move(_rootMenu)}, |
| 872 | enterAction{}, |
| 873 | exitAction{} |
| 874 | { |
| 875 | } |
| 876 | |
| 877 | // CliSession implementation |
| 878 |
nothing calls this directly
no outgoing calls
no test coverage detected