home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / vos2-121.zip / v / tutor / tmodal.h < prev    next >
C/C++ Source or Header  |  1998-07-03  |  812b  |  26 lines

  1. //========================================================
  2. //  tmodal.h - Header file for tModalDialog class
  3. //
  4. //  Copyright 1995,1996 Bruce E. Wampler, All Rights Reserved
  5. //========================================================
  6.  
  7. #ifndef TMODAL_H
  8. #define TMODAL_H
  9.  
  10. #include <v/vmodald.h>  // derived from vModalDialog
  11.  
  12.     class tModalDialog : public vModalDialog
  13.       {
  14.       public:           //---------------------------------------- public
  15.         tModalDialog(vBaseWindow*);
  16.         virtual ~tModalDialog();                // Destructor
  17.         virtual void DialogCommand(ItemVal id, ItemVal retval,
  18.                 CmdType ctype);
  19.  
  20.       protected:        //--------------------------------------- protected
  21.  
  22.       private:          //--------------------------------------- private
  23.  
  24.       };
  25. #endif
  26.