78a7c08049
Prefix all the #ifndef #define ... #endif symbols with KWIN_ , just in case somebody uses CLIENT_H or so too. And don't include config.h . svn path=/trunk/kdebase/kwin/; revision=168940
28 lines
492 B
C++
28 lines
492 B
C++
/*****************************************************************
|
|
kwin - the KDE window manager
|
|
|
|
Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
|
******************************************************************/
|
|
#ifndef KWIN_KILLWINDOW_H
|
|
#define KWIN_KILLWINDOW_H
|
|
|
|
#include "workspace.h"
|
|
|
|
namespace KWinInternal {
|
|
|
|
class KillWindow
|
|
{
|
|
public:
|
|
|
|
KillWindow( Workspace* ws );
|
|
~KillWindow();
|
|
|
|
void start();
|
|
|
|
private:
|
|
Workspace* workspace;
|
|
};
|
|
|
|
};
|
|
|
|
#endif
|