home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / TEMPLDEF.PAK / AFXCOLL1.H next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  1.8 KB  |  55 lines

  1. // This is a part of the Microsoft Foundation Classes C++ library.
  2. // Copyright (C) 1992-1995 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_PACKING
  19. #pragma pack(push, _AFX_PACKING)
  20. #endif
  21.  
  22. /////////////////////////////////////////////////////////////////////////////
  23. // Classes declared in this file
  24.  
  25. //CObject
  26.     // Arrays
  27.     class CByteArray;           // array of BYTE
  28.     class CWordArray;           // array of WORD
  29.     class CDWordArray;          // array of DWORD
  30.     class CUIntArray;           // array of UINT
  31.     class CPtrArray;            // array of void*
  32.     class CObArray;             // array of CObject*
  33.  
  34.     // Lists
  35.     class CPtrList;             // list of void*
  36.     class CObList;              // list of CObject*
  37.  
  38.     // Maps (aka Dictionaries)
  39.     class CMapWordToOb;         // map from WORD to CObject*
  40.     class CMapWordToPtr;        // map from WORD to void*
  41.     class CMapPtrToWord;        // map from void* to WORD
  42.     class CMapPtrToPtr;         // map from void* to void*
  43.  
  44.     // Special String variants
  45.     class CStringArray;         // array of CStrings
  46.     class CStringList;          // list of CStrings
  47.     class CMapStringToPtr;      // map from CString to void*
  48.     class CMapStringToOb;       // map from CString to CObject*
  49.     class CMapStringToString;   // map from CString to CString
  50.  
  51. /////////////////////////////////////////////////////////////////////////////
  52.  
  53. #undef AFX_DATA
  54. #define AFX_DATA AFX_CORE_DATA
  55.