7 using namespace command;
9 #define VALUE "1234567890"
11 typedef int ArgumentType;
15 void function(ArgumentType value) {
20 Argument<ArgumentType> argument("Argument as int", function);
22 if (argument.understand(VALUE)) {
26 cout << "Argument class do not understand int values\n";
30 if (test == std::stoi(VALUE)) {
31 cout << "Argument class handles int values\n";
35 cout << "Argument class do not handle int values\n";