blob: 74a21107c595948e03686f0585a2ce9deb2cf51d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/* *************************************
* Includes
* *************************************/
#include "Unit.h"
/* *************************************
* Defines
* *************************************/
/* *************************************
* Structs and enums
* *************************************/
/* *************************************
* Global Variables
* *************************************/
/* *************************************
* Local Variables
* *************************************/
/* *************************************
* Local Prototypes
* *************************************/
/*****************************************************************//**
*
* \brief Constructor for Unit class.
*
*********************************************************************/
Unit::Unit(void)
{
}
|