├── CMakeLists.txt ├── CatCutifier ├── CMakeLists.txt ├── CatCutifier.cpp └── CatCutifier.h ├── LICENSE ├── README.md ├── cmake └── FindSphinx.cmake └── docs ├── CMakeLists.txt ├── Doxyfile.in ├── conf.py ├── index.rst └── requirements.txt /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TartanLlama/cpp-documentation-example/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CatCutifier/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TartanLlama/cpp-documentation-example/HEAD/CatCutifier/CMakeLists.txt -------------------------------------------------------------------------------- /CatCutifier/CatCutifier.cpp: -------------------------------------------------------------------------------- 1 | #include "CatCutifier.h" 2 | 3 | void cat::make_cute() { 4 | // Magic happens 5 | } -------------------------------------------------------------------------------- /CatCutifier/CatCutifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TartanLlama/cpp-documentation-example/HEAD/CatCutifier/CatCutifier.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TartanLlama/cpp-documentation-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TartanLlama/cpp-documentation-example/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TartanLlama/cpp-documentation-example/HEAD/cmake/FindSphinx.cmake -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TartanLlama/cpp-documentation-example/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TartanLlama/cpp-documentation-example/HEAD/docs/Doxyfile.in -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TartanLlama/cpp-documentation-example/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TartanLlama/cpp-documentation-example/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | breathe 2 | --------------------------------------------------------------------------------