| 1234567891011121314151617181920 |
- /******************************************************************************/
- /******************************************************************************/
- class RemoveProjWin : ClosableWindow
- {
- Text t_name;
- Button ok;
- UID proj_id;
- static void OK(RemoveProjWin &rpw);
- void activate(Projects::Elm &proj);
- void create();
- public:
- RemoveProjWin();
- };
- /******************************************************************************/
- /******************************************************************************/
- extern RemoveProjWin RemoveProj;
- /******************************************************************************/
|