home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: SysTools
/
SysTools.zip
/
taman002.zip
/
TASKMANA.ZIP
/
src
/
kTaskMgr.h
< prev
next >
Wrap
C/C++ Source or Header
|
2000-04-29
|
1KB
|
44 lines
/* $Id: kTaskMgr.h,v 1.1 2000/04/29 19:06:35 stknut Exp $
*
* Definition of the kTaskMgr class.
*
* Copyright (c) 2000 knut st. osmundsen (knut.stange.osmundsen@pmsc.no)
*
*/
#ifndef _kTaskMgr_h_
#define _kTaskMgr_h_
/*******************************************************************************
* Defined Constants And Macros *
*******************************************************************************/
#define REFRESHRATE 5
/**
* kTaskMgr - main class.
* @author knut st. osmundsen (knut.stange.osmundsen@pmsc.no)
*/
class kTaskMgr : public kNotebookBase
{
private:
HAB hab;
public:
kTaskMgr(HAB hab);
~kTaskMgr();
/** @cat static init method */
static int init(int argc, char **argv);
/** @cat more overrides */
ULONG showModal();
/**@cat static public data */
static PCSZ pszErrorTitle;
static PCSZ pszInfoTitle;
};
#endif