home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / yacl-012.zip / base / classid.h < prev    next >
C/C++ Source or Header  |  1995-04-08  |  2KB  |  79 lines

  1.  
  2.  
  3. #ifndef _classid_h_
  4. #define _classid_h_
  5.  
  6.  
  7.  
  8.  
  9.  
  10. /*
  11.  *
  12.  *          Copyright (C) 1994, M. A. Sridhar
  13.  *  
  14.  *
  15.  *     This software is Copyright M. A. Sridhar, 1994. You are free
  16.  *     to copy, modify or distribute this software  as you see fit,
  17.  *     and to use  it  for  any  purpose, provided   this copyright
  18.  *     notice and the following   disclaimer are included  with all
  19.  *     copies.
  20.  *
  21.  *                        DISCLAIMER
  22.  *
  23.  *     The author makes no warranties, either expressed or implied,
  24.  *     with respect  to  this  software, its  quality, performance,
  25.  *     merchantability, or fitness for any particular purpose. This
  26.  *     software is distributed  AS IS.  The  user of this  software
  27.  *     assumes all risks  as to its quality  and performance. In no
  28.  *     event shall the author be liable for any direct, indirect or
  29.  *     consequential damages, even if the  author has been  advised
  30.  *     as to the possibility of such damages.
  31.  *
  32.  */
  33.  
  34.  
  35.  
  36.  
  37. #ifdef __GNUC__
  38. #pragma interface
  39. #endif
  40.  
  41. enum CL_ClassidEnum {
  42.     _CL_Object_CLASSID        = 1
  43.     , _CL_Binding_CLASSID
  44.     , _CL_Integer_CLASSID    
  45.     , _CL_String_CLASSID     
  46.     , _CL_ByteArray_CLASSID  
  47.     , _CL_ByteString_CLASSID 
  48.     , _CL_Date_CLASSID       
  49.     , _CL_TimeOfDay_CLASSID  
  50.     , _CL_Map_CLASSID
  51.     , _CL_IntStringMap_CLASSID
  52.     , _CL_IntIntMap_CLASSID
  53.     , _CL_IntPtrMap_CLASSID
  54.     , _CL_StringStringMap_CLASSID
  55.     , _CL_StringIntMap_CLASSID
  56.     , _CL_StringPtrMap_CLASSID
  57.     , _CL_GenericMap_CLASSID
  58.     , _CL_PtrIntMap_CLASSID
  59.     , _CL_Tree_CLASSID       
  60.     , _CL_BitSet_CLASSID
  61.     , _CL_Sequence_CLASSID
  62.     , _CL_IntegerSequence_CLASSID
  63.     , _CL_ObjectSequence_CLASSID
  64.     , _CL_StringSequence_CLASSID
  65.     , _CL_Set_CLASSID        
  66.     , _CL_IntegerSet_CLASSID        
  67.     , _CL_ObjectSet_CLASSID        
  68.     , _CL_StringSet_CLASSID        
  69.     , _CL_Stream_CLASSID
  70.     , _CL_ByteStream_CLASSID
  71.     , _CL_BinaryFile_CLASSID
  72.     , _CL_SlottedFile_CLASSID
  73.     , _CL_BTreeNode_CLASSID
  74.     , _CL_BTree_CLASSID
  75. };
  76.  
  77.  
  78. #endif
  79.