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

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