├── .gitignore ├── LICENSE ├── Makefile ├── README.rst ├── case_study_1.cpp ├── case_study_1.hpp ├── case_study_2.cpp ├── case_study_2.hpp ├── case_study_3.cpp └── case_study_3.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCGallaspy/dr_strangetemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCGallaspy/dr_strangetemplate/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCGallaspy/dr_strangetemplate/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCGallaspy/dr_strangetemplate/HEAD/README.rst -------------------------------------------------------------------------------- /case_study_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCGallaspy/dr_strangetemplate/HEAD/case_study_1.cpp -------------------------------------------------------------------------------- /case_study_1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCGallaspy/dr_strangetemplate/HEAD/case_study_1.hpp -------------------------------------------------------------------------------- /case_study_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCGallaspy/dr_strangetemplate/HEAD/case_study_2.cpp -------------------------------------------------------------------------------- /case_study_2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCGallaspy/dr_strangetemplate/HEAD/case_study_2.hpp -------------------------------------------------------------------------------- /case_study_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCGallaspy/dr_strangetemplate/HEAD/case_study_3.cpp -------------------------------------------------------------------------------- /case_study_3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCGallaspy/dr_strangetemplate/HEAD/case_study_3.hpp --------------------------------------------------------------------------------