6 using namespace command;
8 #define VALUE "-1234567890"
10 typedef int ArgumentType;
14 void function(ArgumentType value) {
19 Argument<ArgumentType> argument("Argument as negative int", function);
21 if (argument.understand(VALUE)) {
25 cout << "Argument class do not understand negative int values\n";
29 if (test == std::stoi(VALUE)) {
30 cout << "Argument class handles negative int values\n";
34 cout << "Argument class do not handle negative int values\n";