You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
452 B
24 lines
452 B
/***************************************************************** |
|
kwin - the KDE window manager |
|
|
|
Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org> |
|
******************************************************************/ |
|
#ifndef KILLWINDOW_H |
|
#define KILLWINDOW_H |
|
|
|
#include "workspace.h" |
|
|
|
class KillWindow |
|
{ |
|
public: |
|
|
|
KillWindow( Workspace* ws ); |
|
~KillWindow(); |
|
|
|
void start(); |
|
|
|
private: |
|
Workspace* workspace; |
|
}; |
|
|
|
#endif
|
|
|