├── .clang-format ├── .gitignore ├── LICENSE ├── NOTICE ├── README.md ├── include └── Support │ ├── CmdLine.h │ ├── CmdLineUtil.h │ ├── StringRef.h │ ├── StringRefStream.h │ └── StringSplit.h ├── premake5.lua ├── src ├── CmdLine.cpp └── CmdLineUtil.cpp └── test ├── CmdLineQt.h ├── PrettyPrint.h ├── Test.cpp └── unittests ├── CmdLineExpandTest.cpp ├── CmdLineTest.cpp ├── CmdLineToArgvTest.cpp ├── StringRefTest.cpp └── StringSplitTest.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine/HEAD/README.md -------------------------------------------------------------------------------- /include/Support/CmdLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine/HEAD/include/Support/CmdLine.h -------------------------------------------------------------------------------- /include/Support/CmdLineUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine/HEAD/include/Support/CmdLineUtil.h -------------------------------------------------------------------------------- /include/Support/StringRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine/HEAD/include/Support/StringRef.h -------------------------------------------------------------------------------- /include/Support/StringRefStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine/HEAD/include/Support/StringRefStream.h -------------------------------------------------------------------------------- /include/Support/StringSplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine/HEAD/include/Support/StringSplit.h -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine/HEAD/premake5.lua -------------------------------------------------------------------------------- /src/CmdLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine/HEAD/src/CmdLine.cpp -------------------------------------------------------------------------------- /src/CmdLineUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine/HEAD/src/CmdLineUtil.cpp -------------------------------------------------------------------------------- /test/CmdLineQt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine/HEAD/test/CmdLineQt.h -------------------------------------------------------------------------------- /test/PrettyPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine/HEAD/test/PrettyPrint.h -------------------------------------------------------------------------------- /test/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine/HEAD/test/Test.cpp -------------------------------------------------------------------------------- /test/unittests/CmdLineExpandTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine/HEAD/test/unittests/CmdLineExpandTest.cpp -------------------------------------------------------------------------------- /test/unittests/CmdLineTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine/HEAD/test/unittests/CmdLineTest.cpp -------------------------------------------------------------------------------- /test/unittests/CmdLineToArgvTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine/HEAD/test/unittests/CmdLineToArgvTest.cpp -------------------------------------------------------------------------------- /test/unittests/StringRefTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine/HEAD/test/unittests/StringRefTest.cpp -------------------------------------------------------------------------------- /test/unittests/StringSplitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abolz/CmdLine/HEAD/test/unittests/StringSplitTest.cpp --------------------------------------------------------------------------------