Make code safer.
[command.git] / tests / parameter / TestParameter.h
1 #include "parameter.h"
2
3
4 class TestParameter : public command::Parameter {
5 public:
6     TestParameter(const std::string & description) : Parameter(description) { }
7
8     virtual void handle() { }
9     virtual bool understand(const std::string & argVal) { }
10 };