Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
685 B

  1. // ConstantMap.h: interface for the CConstantMap class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CONSTANTMAP_H__C5372480_EDF1_11D2_804A_009027345EE2__INCLUDED_)
  5. #define AFX_CONSTANTMAP_H__C5372480_EDF1_11D2_804A_009027345EE2__INCLUDED_
  6. #define UNICODE
  7. #define _UNICODE
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11. typedef pair<t_string, unsigned int> MAPPAIR;
  12. typedef map<t_string, unsigned int> CONSTMAP;
  13. class CConstantMap
  14. {
  15. public:
  16. CConstantMap();
  17. virtual ~CConstantMap();
  18. CONSTMAP m_Map;
  19. };
  20. #endif // !defined(AFX_CONSTANTMAP_H__C5372480_EDF1_11D2_804A_009027345EE2__INCLUDED_)