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

  1.  
  2. // guifloat.cpp
  3. //
  4. // Copyright (c) 1995 by Toshiaki Tsuji, all rights reserved.
  5.  
  6. #include "stdgfx.h"
  7. #include "guifloat.h"
  8.  
  9. GUIFLOAT::GUIFLOAT () : GUICHILD ()
  10.   {
  11.     strcpy ( ClassName, "GUIFLOAT" );
  12.     SetWinStyle ( GUI_WIN_OVERLAPPEDWINDOW );
  13.     SetWinExStyle ( GUI_WINX_TOPMOST );
  14.   } // End of Constructor for GUIFLOAT
  15.  
  16. GUIFLOAT::~GUIFLOAT ()
  17.   {
  18.   } // End of Destructor for GUIFLOAT
  19.  
  20.