2f90225543
Export client.h, workspace.h and options.h so that people can write plugins. svn path=/trunk/kdebase/kwin/; revision=83707
28 lines
482 B
C++
28 lines
482 B
C++
/*****************************************************************
|
|
kwin - the KDE window manager
|
|
|
|
Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
|
******************************************************************/
|
|
#ifndef KILLWINDOW_H
|
|
#define KILLWINDOW_H
|
|
|
|
#include "workspace.h"
|
|
|
|
namespace KWinInternal {
|
|
|
|
class KillWindow
|
|
{
|
|
public:
|
|
|
|
KillWindow( Workspace* ws );
|
|
~KillWindow();
|
|
|
|
void start();
|
|
|
|
private:
|
|
Workspace* workspace;
|
|
};
|
|
|
|
};
|
|
|
|
#endif
|