home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / dho.zip / DHO / SRC / DTOPWIN.CC < prev    next >
C/C++ Source or Header  |  1995-08-27  |  1KB  |  59 lines

  1. /****************************************/
  2. /*    Developer Helper Object Set       */
  3. /*  (C) 1994-95 Thomas E. Bednarz, Jr.  */
  4. /*     All rights reserved              */
  5. /***************************************/
  6.  
  7. /* $Id: dtopwin.cc 1.3 1995/08/21 05:33:52 teb Exp $ */
  8.  
  9.  
  10. #include"dtopwin.h"
  11.  
  12.  
  13. //----------------------------------------------------------
  14. //  TDesktopWindow
  15. TDesktopWindow::TDesktopWindow():
  16.    TWinBase(0)
  17. {
  18.    hwnd = HWND_DESKTOP;
  19. }
  20.  
  21.  
  22. //----------------------------------------------------------
  23. //  ~TDesktopWindow
  24. TDesktopWindow::~TDesktopWindow()
  25. {
  26.  
  27. }
  28.  
  29.  
  30.  
  31. //----------------------------------------------------------
  32. //  Init
  33. BOOL TDesktopWindow::init()
  34. {
  35.    return TRUE;
  36. }
  37.  
  38.  
  39.  
  40. //----------------------------------------------------------
  41. //  getClassName
  42. const char *TDesktopWindow::getClassName()
  43. {
  44.    return "TDesktopWindow";
  45. }
  46.       
  47.  
  48.  
  49. //----------------------------------------------------------
  50. //  doCommand
  51. void TDesktopWindow::doCommand(WinMsg wm)
  52. {
  53.  
  54. }
  55.  
  56.  
  57.  
  58.  
  59.