| 6 | } |
| 7 | |
| 8 | std::shared_ptr<AppCommand> AppCommandList::GetCommand(size_t i) const { |
| 9 | return i < _commands.size() ? _commands[i] : nullptr; |
| 10 | } |
| 11 | |
| 12 | int AppCommandList::GetCount() const { |
| 13 | return static_cast<int>(_commands.size()); |
no test coverage detected