From e0373a5971bc178e358db8974510cb9b44d4f69a Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Thu, 7 Feb 2019 17:35:07 +0100 Subject: Change public headers directory (include) structure Add a public header that includes the entire library "mm.hpp", and move mmvec to a subdirectory "mm". --- include/mm.hpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 include/mm.hpp (limited to 'include/mm.hpp') diff --git a/include/mm.hpp b/include/mm.hpp new file mode 100644 index 0000000..7e9f02b --- /dev/null +++ b/include/mm.hpp @@ -0,0 +1,11 @@ +#pragma once + +/* MiniMath + * A mathematical vector library that (ab)uses modern C++ abstraction features. + * This header includes the entire library. + * + * Warning: having (ab)used a lot of templated code it is not recommended to + * include everything as it may slow down the compiler. + */ + +#include "mm/mmvec.hpp" -- cgit v1.2.1