├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── CI.yml ├── .gitignore ├── Bin ├── BuildCodeBlocks.sh ├── BuildMSVC2019.cmd ├── BuildMSVC2022.cmd ├── BuildMakefiles.sh ├── BuildXcode.command ├── GenerateCodeBlocks.sh ├── GenerateHeader.cmd ├── GenerateMSVC2019.cmd ├── GenerateMSVC2022.cmd ├── GenerateMakefiles.sh └── GenerateXcode.command ├── CMakeLists.txt ├── Changelog.md ├── Include └── Heady.hpp ├── LICENSE ├── README.md ├── Source ├── Heady.cpp ├── Heady.h ├── Main.cpp └── clara.hpp └── Tests └── Basic ├── Basic.cpp ├── Basic.h └── Main.cpp /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Build/ 2 | 3 | 4 | -------------------------------------------------------------------------------- /Bin/BuildCodeBlocks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/Bin/BuildCodeBlocks.sh -------------------------------------------------------------------------------- /Bin/BuildMSVC2019.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/Bin/BuildMSVC2019.cmd -------------------------------------------------------------------------------- /Bin/BuildMSVC2022.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/Bin/BuildMSVC2022.cmd -------------------------------------------------------------------------------- /Bin/BuildMakefiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/Bin/BuildMakefiles.sh -------------------------------------------------------------------------------- /Bin/BuildXcode.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/Bin/BuildXcode.command -------------------------------------------------------------------------------- /Bin/GenerateCodeBlocks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/Bin/GenerateCodeBlocks.sh -------------------------------------------------------------------------------- /Bin/GenerateHeader.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/Bin/GenerateHeader.cmd -------------------------------------------------------------------------------- /Bin/GenerateMSVC2019.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/Bin/GenerateMSVC2019.cmd -------------------------------------------------------------------------------- /Bin/GenerateMSVC2022.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/Bin/GenerateMSVC2022.cmd -------------------------------------------------------------------------------- /Bin/GenerateMakefiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/Bin/GenerateMakefiles.sh -------------------------------------------------------------------------------- /Bin/GenerateXcode.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/Bin/GenerateXcode.command -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/Changelog.md -------------------------------------------------------------------------------- /Include/Heady.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/Include/Heady.hpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/README.md -------------------------------------------------------------------------------- /Source/Heady.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/Source/Heady.cpp -------------------------------------------------------------------------------- /Source/Heady.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/Source/Heady.h -------------------------------------------------------------------------------- /Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/Source/Main.cpp -------------------------------------------------------------------------------- /Source/clara.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/Source/clara.hpp -------------------------------------------------------------------------------- /Tests/Basic/Basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/Tests/Basic/Basic.cpp -------------------------------------------------------------------------------- /Tests/Basic/Basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/Tests/Basic/Basic.h -------------------------------------------------------------------------------- /Tests/Basic/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesBoer/Heady/HEAD/Tests/Basic/Main.cpp --------------------------------------------------------------------------------