2000-06-19 10:45:45 +00:00
|
|
|
/*****************************************************************
|
2003-09-16 19:28:03 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2000-06-19 10:45:45 +00:00
|
|
|
|
|
|
|
Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
2003-09-16 19:28:03 +00:00
|
|
|
Copyright (C) 2003 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
|
|
|
|
You can Freely distribute this program under the GNU General Public
|
|
|
|
License. See the file "COPYING" for the exact licensing terms.
|
2000-06-19 10:45:45 +00:00
|
|
|
******************************************************************/
|
2003-09-16 19:28:03 +00:00
|
|
|
|
2002-07-26 20:30:36 +00:00
|
|
|
#ifndef KWIN_KILLWINDOW_H
|
|
|
|
#define KWIN_KILLWINDOW_H
|
2000-06-19 10:45:45 +00:00
|
|
|
|
|
|
|
#include "workspace.h"
|
|
|
|
|
2003-09-16 19:28:03 +00:00
|
|
|
namespace KWinInternal
|
|
|
|
{
|
2001-02-20 01:20:38 +00:00
|
|
|
|
2000-06-19 10:45:45 +00:00
|
|
|
class KillWindow
|
2003-09-16 19:28:03 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
KillWindow( Workspace* ws );
|
|
|
|
~KillWindow();
|
|
|
|
|
|
|
|
void start();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Workspace* workspace;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
2001-02-20 01:20:38 +00:00
|
|
|
|
2000-06-19 10:45:45 +00:00
|
|
|
#endif
|