for nested command calls
| 53 | |
| 54 | // for nested command calls |
| 55 | struct CallData |
| 56 | { |
| 57 | CallData(sml::AgentSML* pAgent, bool rawOutput) : pAgent(pAgent), rawOutput(rawOutput) {} |
| 58 | |
| 59 | sml::AgentSML* pAgent; |
| 60 | bool rawOutput; |
| 61 | }; |
| 62 | |
| 63 | class CommandLineInterface : public sml::KernelCallback, public cli::Cli |
| 64 | { |