From 188d74cb789f33967daf6daa5af17d41b6f59d4e Mon Sep 17 00:00:00 2001 From: XaviDCR92 Date: Mon, 9 Jul 2018 23:20:46 +0200 Subject: Unit renamed to BaseUnit. --- BaseUnit.h | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 BaseUnit.h (limited to 'BaseUnit.h') diff --git a/BaseUnit.h b/BaseUnit.h new file mode 100644 index 0000000..485ac94 --- /dev/null +++ b/BaseUnit.h @@ -0,0 +1,36 @@ +#ifndef BASEUNIT_H__ +#define BASEUNIT_H__ + +/* ******************************************************************* + * Includes + * ******************************************************************/ + +#include "BaseUnit.h" + +/* ******************************************************************* + * Defines + * ******************************************************************/ + +/* ******************************************************************* + * Global types definition + * ******************************************************************/ + +/* ******************************************************************* + * Global variables declaration + * ******************************************************************/ + +/* ******************************************************************* + * Global functions declaration + * ******************************************************************/ + +/* ******************************************************************* + * Class definition + * ******************************************************************/ + +class BaseUnit +{ + public: + explicit BaseUnit(void); +}; + +#endif /* BASEUNIT_H__ */ -- cgit v1.2.3