dlugolecki.net.pl
Dziennik
Polecane
Software
projects
/
command.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
9e2874d8e3326d561ae3fca2a2bd1a63abc88281
[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 & ) { return false; }
10
};