├── .clang-format ├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── README.md ├── codecov.yml ├── example └── drawshape.cpp ├── include ├── gethin.hpp └── gethin │ ├── Flag.hpp │ ├── OptionReader.hpp │ ├── Optional.hpp │ ├── Parameter.hpp │ ├── Set.hpp │ └── String.hpp ├── makefile ├── single_include ├── gethin.hpp ├── makefile └── preamble.inc ├── test ├── flagTest.cpp ├── include │ └── ReHelper.hpp ├── optionalTest.cpp ├── setTest.cpp ├── stringTest.cpp └── tests-main.cpp └── usage.gif /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Google 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "test" 3 | -------------------------------------------------------------------------------- /example/drawshape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/example/drawshape.cpp -------------------------------------------------------------------------------- /include/gethin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/include/gethin.hpp -------------------------------------------------------------------------------- /include/gethin/Flag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/include/gethin/Flag.hpp -------------------------------------------------------------------------------- /include/gethin/OptionReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/include/gethin/OptionReader.hpp -------------------------------------------------------------------------------- /include/gethin/Optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/include/gethin/Optional.hpp -------------------------------------------------------------------------------- /include/gethin/Parameter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/include/gethin/Parameter.hpp -------------------------------------------------------------------------------- /include/gethin/Set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/include/gethin/Set.hpp -------------------------------------------------------------------------------- /include/gethin/String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/include/gethin/String.hpp -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/makefile -------------------------------------------------------------------------------- /single_include/gethin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/single_include/gethin.hpp -------------------------------------------------------------------------------- /single_include/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/single_include/makefile -------------------------------------------------------------------------------- /single_include/preamble.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/single_include/preamble.inc -------------------------------------------------------------------------------- /test/flagTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/test/flagTest.cpp -------------------------------------------------------------------------------- /test/include/ReHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/test/include/ReHelper.hpp -------------------------------------------------------------------------------- /test/optionalTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/test/optionalTest.cpp -------------------------------------------------------------------------------- /test/setTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/test/setTest.cpp -------------------------------------------------------------------------------- /test/stringTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/test/stringTest.cpp -------------------------------------------------------------------------------- /test/tests-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/test/tests-main.cpp -------------------------------------------------------------------------------- /usage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattiasLiljeson/gethin/HEAD/usage.gif --------------------------------------------------------------------------------