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