29 lines
831 B
C++
29 lines
831 B
C++
/*
|
|
=======================================================================================
|
|
Name: GIItem.cpp : Implementation of the GI_Item class
|
|
Author: Mihaela Tancu
|
|
Date: 2 June 1998
|
|
=======================================================================================
|
|
*/
|
|
|
|
|
|
#include "stdafx.h"
|
|
#include "GIItem.h"
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Description : constructor
|
|
// ----------------------------------------------------------------------------
|
|
GI_Item::GI_Item(BOOL bAct, char *szName)
|
|
{
|
|
m_bActived = bAct;
|
|
strcpy(m_szName, szName);
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Description : destructor
|
|
// ----------------------------------------------------------------------------
|
|
GI_Item::~GI_Item()
|
|
{
|
|
}
|