home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / yacl-012.zip / base / map.cxx < prev    next >
C/C++ Source or Header  |  1994-12-04  |  4KB  |  121 lines

  1.  
  2.  
  3.  
  4.  
  5. /*
  6.  *
  7.  *          Copyright (C) 1994, M. A. Sridhar
  8.  *  
  9.  *
  10.  *     This software is Copyright M. A. Sridhar, 1994. You are free
  11.  *     to copy, modify or distribute this software  as you see fit,
  12.  *     and to use  it  for  any  purpose, provided   this copyright
  13.  *     notice and the following   disclaimer are included  with all
  14.  *     copies.
  15.  *
  16.  *                        DISCLAIMER
  17.  *
  18.  *     The author makes no warranties, either expressed or implied,
  19.  *     with respect  to  this  software, its  quality, performance,
  20.  *     merchantability, or fitness for any particular purpose. This
  21.  *     software is distributed  AS IS.  The  user of this  software
  22.  *     assumes all risks  as to its quality  and performance. In no
  23.  *     event shall the author be liable for any direct, indirect or
  24.  *     consequential damages, even if the  author has been  advised
  25.  *     as to the possibility of such damages.
  26.  *
  27.  */
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34. #ifndef _map_cxx_ /* Tue Nov 16 22:12:10 1993 */
  35. #define _map_cxx_
  36.  
  37. #ifdef __GNUC__
  38. #pragma implementation
  39. #endif
  40.  
  41.  
  42. #include "base/string.h"
  43.  
  44. #define _no_cl_map_typedefs_
  45. #include "base/mapimp.cxx"
  46.  
  47.  
  48.  
  49.  
  50. #if defined(__GNUC__) && __GNUC_MINOR__ >= 6
  51. template class CL_Map<long, CL_String>;
  52. template class CL_Map<long, long>;
  53. template class CL_Map<long, CL_ObjectPtr>;
  54. template class CL_Map<CL_String, CL_String>;
  55. template class CL_Map<CL_String, long>;
  56. template class CL_Map<CL_String, CL_ObjectPtr>;
  57. template class CL_Map<CL_ObjectPtr, CL_ObjectPtr>;
  58. template class CL_Map<CL_ObjectPtr, long>;
  59.  
  60.  
  61. template class CL_MapAssoc<long, CL_String>;
  62. template class CL_MapAssoc<long, long>;
  63. template class CL_MapAssoc<long, CL_ObjectPtr>;
  64. template class CL_MapAssoc<CL_String, CL_String>;
  65. template class CL_MapAssoc<CL_String, long>;
  66. template class CL_MapAssoc<CL_String, CL_ObjectPtr>;
  67. template class CL_MapAssoc<CL_ObjectPtr, CL_ObjectPtr>;
  68. template class CL_MapAssoc<CL_ObjectPtr, long>;
  69.  
  70.  
  71. template class CL_MapIterator<long, CL_String>;
  72. template class CL_MapIterator<long, long>;
  73. template class CL_MapIterator<long, CL_ObjectPtr>;
  74. template class CL_MapIterator<CL_String, CL_String>;
  75. template class CL_MapIterator<CL_String, long>;
  76. template class CL_MapIterator<CL_String, CL_ObjectPtr>;
  77. template class CL_MapIterator<CL_ObjectPtr, CL_ObjectPtr>;
  78. template class CL_MapIterator<CL_ObjectPtr, long>;
  79.  
  80.  
  81. template class CL_Iterator<CL_MapAssoc<long, CL_String> >;
  82. template class CL_Iterator<CL_MapAssoc<long, long> >;
  83. template class CL_Iterator<CL_MapAssoc<long, CL_ObjectPtr> >;
  84. template class CL_Iterator<CL_MapAssoc<CL_String, CL_String> >;
  85. template class CL_Iterator<CL_MapAssoc<CL_String, long> >;
  86. template class CL_Iterator<CL_MapAssoc<CL_String, CL_ObjectPtr> >;
  87. template class CL_Iterator<CL_MapAssoc<CL_ObjectPtr, CL_ObjectPtr> >;
  88. template class CL_Iterator<CL_MapAssoc<CL_ObjectPtr, long> >;
  89.  
  90. template class CL_Basics<CL_MapAssoc<long, CL_String> >;
  91. template class CL_Basics<CL_MapAssoc<long, long> >;
  92. template class CL_Basics<CL_MapAssoc<long, CL_ObjectPtr> >;
  93. template class CL_Basics<CL_MapAssoc<CL_String, CL_String> >;
  94. template class CL_Basics<CL_MapAssoc<CL_String, long> >;
  95. template class CL_Basics<CL_MapAssoc<CL_String, CL_ObjectPtr> >;
  96. template class CL_Basics<CL_MapAssoc<CL_ObjectPtr, CL_ObjectPtr> >;
  97. template class CL_Basics<CL_MapAssoc<CL_ObjectPtr, long> >;
  98.  
  99. #endif
  100.  
  101.  
  102.  
  103. #include "base/mapdef.h"
  104.  
  105.  
  106.  
  107. // CL_DEFINE_CLASS(CL_GenericMap,      _CL_GenericMap_CLASSID);
  108. CL_DEFINE_CLASS(CL_IntStringMap,    _CL_IntStringMap_CLASSID);
  109. CL_DEFINE_CLASS(CL_IntIntMap,       _CL_IntIntMap_CLASSID);
  110. CL_DEFINE_CLASS(CL_IntPtrMap,       _CL_IntPtrMap_CLASSID);
  111. CL_DEFINE_CLASS(CL_StringStringMap, _CL_StringStringMap_CLASSID);
  112. CL_DEFINE_CLASS(CL_StringIntMap,    _CL_StringIntMap_CLASSID);
  113. CL_DEFINE_CLASS(CL_StringPtrMap,    _CL_StringPtrMap_CLASSID);
  114. CL_DEFINE_CLASS(CL_PtrIntMap,       _CL_PtrIntMap_CLASSID);
  115.  
  116.  
  117.  
  118.  
  119. #endif /* _map_cxx_ */
  120.  
  121.