| 55 | return std::vector<std::string>(commands.begin(), commands.end()); |
| 56 | } |
| 57 | void Clear() override |
| 58 | { |
| 59 | commands.clear(); |
| 60 | } |
| 61 | private: |
| 62 | const std::size_t maxSize; |
| 63 | std::deque<std::string> commands; |
nothing calls this directly
no outgoing calls
no test coverage detected