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

  1. /****************************************/
  2. /*    Developer Helper Object Set       */
  3. /*  (C) 1994-95 Thomas E. Bednarz, Jr.  */
  4. /*     All rights reserved              */
  5. /***************************************/
  6.  
  7. /* $Id: node.h 1.4 1995/08/13 03:21:12 teb Exp $ */
  8.  
  9.  
  10. #ifndef __NODE_H__
  11. #define __NODE_H__
  12.  
  13.  
  14. #include<object.h>
  15. #include<stdlib.h>
  16.  
  17. class TNode : public TObject
  18. {
  19.       TNode *fNext;   
  20.       TObject *fObject;
  21.  
  22.    public:
  23.       TNode(TObject *obj);
  24.       TNode *getNext(void);
  25.       void setNext(TNode *next);
  26.       TObject *getObject(void);
  27.       virtual const char *getClassName();
  28. };
  29.  
  30.  
  31.  
  32.  
  33. #endif   /* node.h */
  34.  
  35.