home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / utility / templdef / afxcoll1.h next >
Encoding:
C/C++ Source or Header  |  1998-03-27  |  1.9 KB  |  62 lines

  1. // This is a part of the Microsoft Foundation Classes C++ library.
  2. // Copyright (C) 1992-1998 Microsoft Corporation
  3. // All rights reserved.
  4. //
  5. // This source code is only intended as a supplement to the
  6. // Microsoft Foundation Classes Reference and related
  7. // electronic documentation provided with the library.
  8. // See these sources for detailed information regarding the
  9. // Microsoft Foundation Classes product.
  10.  
  11. #ifndef __AFXCOLL_H__
  12. #define __AFXCOLL_H__
  13.  
  14. #ifndef __AFX_H__
  15.     #include <afx.h>
  16. #endif
  17.  
  18. #ifdef _AFX_MINREBUILD
  19. #pragma component(minrebuild, off)
  20. #endif
  21. #ifndef _AFX_FULLTYPEINFO
  22. #pragma component(mintypeinfo, on)
  23. #endif
  24.  
  25. #ifdef _AFX_PACKING
  26. #pragma pack(push, _AFX_PACKING)
  27. #endif
  28.  
  29. /////////////////////////////////////////////////////////////////////////////
  30. // Classes declared in this file
  31.  
  32. //CObject
  33.     // Arrays
  34.     class CByteArray;           // array of BYTE
  35.     class CWordArray;           // array of WORD
  36.     class CDWordArray;          // array of DWORD
  37.     class CUIntArray;           // array of UINT
  38.     class CPtrArray;            // array of void*
  39.     class CObArray;             // array of CObject*
  40.  
  41.     // Lists
  42.     class CPtrList;             // list of void*
  43.     class CObList;              // list of CObject*
  44.  
  45.     // Maps (aka Dictionaries)
  46.     class CMapWordToOb;         // map from WORD to CObject*
  47.     class CMapWordToPtr;        // map from WORD to void*
  48.     class CMapPtrToWord;        // map from void* to WORD
  49.     class CMapPtrToPtr;         // map from void* to void*
  50.  
  51.     // Special String variants
  52.     class CStringArray;         // array of CStrings
  53.     class CStringList;          // list of CStrings
  54.     class CMapStringToPtr;      // map from CString to void*
  55.     class CMapStringToOb;       // map from CString to CObject*
  56.     class CMapStringToString;   // map from CString to CString
  57.  
  58. /////////////////////////////////////////////////////////////////////////////
  59.  
  60. #undef AFX_DATA
  61. #define AFX_DATA AFX_CORE_DATA
  62.