WindowsXP-SP1/base/wmi/tests/logger/constantmap.h
2020-09-30 16:53:49 +02:00

30 lines
847 B
C++

// ConstantMap.h: interface for the CConstantMap class.
//
//////////////////////////////////////////////////////////////////////
//***************************************************************************
//
// judyp May 1999
//
//***************************************************************************
#if !defined(AFX_CONSTANTMAP_H__C5372480_EDF1_11D2_804A_009027345EE2__INCLUDED_)
#define AFX_CONSTANTMAP_H__C5372480_EDF1_11D2_804A_009027345EE2__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
typedef pair<t_string, unsigned int> MAPPAIR;
typedef map<t_string, unsigned int> CONSTMAP;
class CConstantMap
{
public:
CConstantMap();
virtual ~CConstantMap();
CONSTMAP m_Map;
};
#endif // !defined(AFX_CONSTANTMAP_H__C5372480_EDF1_11D2_804A_009027345EE2__INCLUDED_)