home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / dho.zip / DHO / SRC / OBJECT.H < prev    next >
C/C++ Source or Header  |  1995-08-27  |  771b  |  36 lines

  1. /****************************************/
  2. /*    Developer Helper Object Set       */
  3. /*  (C) 1994-95 Thomas E. Bednarz, Jr.  */
  4. /*     All rights reserved              */
  5. /***************************************/
  6.  
  7. /* $Id: object.h 1.4 1995/08/13 03:21:12 teb Exp $ */
  8.  
  9.  
  10. #ifndef __OBJECT_H__
  11. #define __OBJECT_H__
  12.  
  13.  
  14. #include<baseutil.h>
  15.  
  16. /* TObject is the base object class for all objects in the
  17.       Developer Helper Object Set. */
  18.  
  19. class TObject
  20. {
  21.       const char *fCopyright;
  22.    public:
  23.      TObject(void);
  24.      virtual const char *getClassName(void);
  25.      virtual void *getKey(void);
  26.      
  27.      static short member(const char *ClassName, TObject Obj);
  28.      static short member(const char *ClassName, TObject *Obj);
  29. };
  30.  
  31.  
  32.  
  33.  
  34. #endif
  35.  
  36.