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

  1. /****************************************/
  2. /*    Developer Helper Object Set       */
  3. /*  (C) 1994-95 Thomas E. Bednarz, Jr.  */
  4. /*     All rights reserved              */
  5. /***************************************/
  6.  
  7. /* $Id: dtopwin.h 1.4 1995/08/21 05:49:22 teb Exp $ */
  8.  
  9. #ifndef __DTOPWIN_H__
  10. #define __DTOPWIN_H__
  11.  
  12.  
  13. #include<winbase.h>
  14.  
  15. class TDesktopWindow : public TWinBase
  16. {
  17.  
  18.    public:
  19.       TDesktopWindow();
  20.       ~TDesktopWindow();
  21.       virtual BOOL init();
  22.       virtual const char *getClassName();
  23.       
  24.       virtual void doCommand(WinMsg wm);
  25. };
  26.  
  27. #endif
  28.