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

  1.  
  2. // guichild.cpp
  3. //
  4. // Copyright (c) 1995 by Toshiaki Tsuji, all rights reserved.
  5.  
  6. #include "stdgfx.h"
  7. #include "guichild.h"
  8.  
  9. GUICHILD::GUICHILD () : GUIWINDOW ()
  10.   {
  11.     strcpy ( ClassName, "GUICHILD" );
  12.     AddWinStyle ( GUI_WIN_CHILD | GUI_WIN_VISIBLE );
  13.   } // End of Constructor for GUICHILD
  14.  
  15. GUICHILD::~GUICHILD ()
  16.   {
  17.   } // End of Destructor for GUICHILD
  18.  
  19. LONG GUICHILD::OnCreate ()
  20.   {
  21.     return 0;
  22.   } // End of OnCreate for GUICHILD
  23.  
  24. LONG GUICHILD::OnClose ()
  25.   {
  26.     return 0;
  27.   } // End of OnClose for GUICHILD
  28.