diff options
Diffstat (limited to 'example/option_example/example.cc')
| -rw-r--r-- | example/option_example/example.cc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/example/option_example/example.cc b/example/option_example/example.cc new file mode 100644 index 0000000..0da9d49 --- /dev/null +++ b/example/option_example/example.cc @@ -0,0 +1,14 @@ +#include <ocl/crc_hash.hpp> +#include <ocl/print.hpp> +#include <ocl/option.hpp> + +int main(int argc, char** argv) +{ + ocl::option opt{ocl::eval_eq(nullptr, nullptr)}; + opt.expect("is incorrect"); + + ocl::option opt2{ocl::eval_eq(argv, nullptr)}; + opt2.expect("is incorrect"); + + return 0; +} |
