home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: SysTools / SysTools.zip / taman002.zip / TASKMANA.ZIP / src / kTaskMgr.h < prev    next >
C/C++ Source or Header  |  2000-04-29  |  1KB  |  44 lines

  1. /* $Id: kTaskMgr.h,v 1.1 2000/04/29 19:06:35 stknut Exp $
  2.  *
  3.  * Definition of the kTaskMgr class.
  4.  *
  5.  * Copyright (c) 2000 knut st. osmundsen (knut.stange.osmundsen@pmsc.no)
  6.  *
  7.  */
  8.  
  9. #ifndef _kTaskMgr_h_
  10. #define _kTaskMgr_h_
  11.  
  12. /*******************************************************************************
  13. *   Defined Constants And Macros                                               *
  14. *******************************************************************************/
  15. #define REFRESHRATE     5
  16.  
  17.  
  18. /**
  19.  * kTaskMgr - main class.
  20.  * @author      knut st. osmundsen (knut.stange.osmundsen@pmsc.no)
  21.  */
  22. class kTaskMgr : public kNotebookBase
  23. {
  24. private:
  25.     HAB hab;
  26.  
  27. public:
  28.     kTaskMgr(HAB hab);
  29.     ~kTaskMgr();
  30.  
  31.  
  32.     /** @cat static init method */
  33.     static int init(int argc, char **argv);
  34.  
  35.     /** @cat more overrides */
  36.     ULONG   showModal();
  37.  
  38.     /**@cat static public data */
  39.     static PCSZ   pszErrorTitle;
  40.     static PCSZ   pszInfoTitle;
  41. };
  42.  
  43. #endif
  44.