home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / include / xdialog.h < prev    next >
C/C++ Source or Header  |  1997-09-29  |  996b  |  29 lines

  1. #ifndef __XDIALOG_H__
  2. #define __XDIALOG_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------------- r 1.0 */
  6. /*===========================================================================*/
  7. /*                              class: XDialog                                */
  8. /*                       derived from: XWindow                               */
  9. /*                        last update: 6/97                                  */
  10. /*                      programmed by: Stefan von Brauk (sbrauk@gwdg.de)     */
  11. /*===========================================================================*/
  12.  
  13.  
  14.  
  15. #include "XWindow.h"
  16.  
  17.  
  18. class _export_ XDialog: public XWindow
  19. {
  20.    protected:
  21.       XDialog( ) { winhandle = 0; }      
  22.    public:
  23.       virtual BOOL DoCommand( LONG ) { return TRUE; }
  24.       virtual BOOL DoSysCommand( USHORT) { return TRUE;}
  25.       virtual ~XDialog();
  26. };
  27.  
  28. #endif
  29.