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.cpp | 39 +++++++++++++++++++++++++++++++++++++++ BaseUnit.h | 36 ++++++++++++++++++++++++++++++++++++ Unit.cpp | 39 --------------------------------------- Unit.h | 26 -------------------------- 4 files changed, 75 insertions(+), 65 deletions(-) create mode 100644 BaseUnit.cpp create mode 100644 BaseUnit.h delete mode 100644 Unit.cpp delete mode 100644 Unit.h diff --git a/BaseUnit.cpp b/BaseUnit.cpp new file mode 100644 index 0000000..ff431b5 --- /dev/null +++ b/BaseUnit.cpp @@ -0,0 +1,39 @@ +/* ******************************************************************* + * Includes + * ******************************************************************/ + +#include "BaseUnit.h" + +/* ******************************************************************* + * Defines + * ******************************************************************/ + +/* ******************************************************************* + * Types definition + * ******************************************************************/ + +/* ******************************************************************* + * Global variables definition + * ******************************************************************/ + +/* ******************************************************************* + * Local variables definition + * ******************************************************************/ + +/* ******************************************************************* + * Local prototypes declaration + * ******************************************************************/ + +/* ******************************************************************* + * Functions definition + * ******************************************************************/ + +/*****************************************************************//** + * + * \brief Constructor for BaseUnit class. + * + *********************************************************************/ +BaseUnit::BaseUnit(void) +{ +} + 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__ */ diff --git a/Unit.cpp b/Unit.cpp deleted file mode 100644 index ad49f2e..0000000 --- a/Unit.cpp +++ /dev/null @@ -1,39 +0,0 @@ -/* ******************************************************************* - * Includes - * ******************************************************************/ - -#include "Unit.h" - -/* ******************************************************************* - * Defines - * ******************************************************************/ - -/* ******************************************************************* - * Types definition - * ******************************************************************/ - -/* ******************************************************************* - * Global variables definition - * ******************************************************************/ - -/* ******************************************************************* - * Local variables definition - * ******************************************************************/ - -/* ******************************************************************* - * Local prototypes declaration - * ******************************************************************/ - -/* ******************************************************************* - * Functions definition - * ******************************************************************/ - -/*****************************************************************//** - * - * \brief Constructor for Unit class. - * - *********************************************************************/ -Unit::Unit(void) -{ -} - diff --git a/Unit.h b/Unit.h deleted file mode 100644 index 1508a88..0000000 --- a/Unit.h +++ /dev/null @@ -1,26 +0,0 @@ -#ifndef UNIT_H__ -#define UNIT_H__ - -/* ************************************* - * Includes - * *************************************/ - -/* ************************************* - * Defines - * *************************************/ - -/* ************************************* - * Structs and enums - * *************************************/ - -/* ************************************* - * Class definition - * *************************************/ - -class Unit -{ - public: - Unit(void); -}; - -#endif /* UNIT_H__ */ -- cgit v1.2.3