forked from birkiro/Patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShape.cpp
35 lines (26 loc) · 1.03 KB
/
Shape.cpp
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
/*! \company $CompanyInfo:$
* \version $Revision:$
* \checkindate $Date:$
* \file $RCSfile:$
***************************************************************************/
#include "StdAfx.h"
#include "Shape.h"
//////////////////////////////// PUBLIC ////////////////////////////////
//============================== Life Cycle ================================
/*! Default constructor.
*
****************************************************************************/
Shape::Shape()
{
m_Id = g_ObjectCount++;
}
/*! Destructor.
*
****************************************************************************/
Shape::~Shape()
{
}
//============================== Operations ================================
//============================== Access ================================
//////////////////////////////// PRIVATE ////////////////////////////////
//============================== Operations ================================