home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / 3DTOSHI2.ZIP / mpgui / include / guichild.h < prev    next >
C/C++ Source or Header  |  1996-03-23  |  406b  |  25 lines

  1.  
  2. // guichild.h
  3. //
  4. // Copyright (c) 1995 by Toshiaki Tsuji, all rights reserved.
  5.  
  6. #ifndef __GUICHILD_H__
  7. #define __GUICHILD_H__
  8.  
  9. #include "stdgfx.h"
  10. #include "guiframe.h"
  11.  
  12. class GUICHILD : public GUIWINDOW
  13.   {
  14.     protected :
  15.       virtual LONG OnCreate ();
  16.       virtual LONG OnClose ();
  17.  
  18.     public :
  19.       GUICHILD ();
  20.       virtual ~GUICHILD ();
  21.   }; // End of GUICHILD
  22.  
  23. #endif
  24.  
  25.