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

  1. #ifndef __XSYSTEMDLG_H__
  2. #define __XSYSTEMDLG_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------------- r 1.0 */
  6. /*===========================================================================*/
  7. /*                              class: XSystemDialog                         */
  8. /*                       derived from: XObject                               */
  9. /*                        last update: 4/97                                  */
  10. /*                      programmed by: Stefan von Brauk (sbrauk@gwdg.de)     */
  11. /*===========================================================================*/
  12.  
  13.  
  14. #include "xobject.h"
  15.  
  16.  
  17. class _export_ XSystemDialog: public XObject
  18. {
  19.    protected:
  20.       SHORT command;
  21.       XSystemDialog() { command = 0; }
  22.    public:
  23.       SHORT GetCommand() const { return command; }
  24. };
  25.  
  26. #endif
  27.