| 124 | class Commander { |
| 125 | public: |
| 126 | void SetAttributes(const CommandAttributes *attributes) { attributes_ = attributes; } |
| 127 | const CommandAttributes *GetAttributes() const { return attributes_; } |
| 128 | void SetArgs(const std::vector<std::string> &args) { args_ = args; } |
| 129 | virtual Status Parse() { return Parse(args_); } |
no outgoing calls
no test coverage detected