afcc9b6897
svn path=/branches/work/kwin_composite/; revision=558442
36 lines
749 B
C++
36 lines
749 B
C++
/*****************************************************************
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
Copyright (C) 2006 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.
|
|
******************************************************************/
|
|
|
|
#include "scene_basic.h"
|
|
|
|
namespace KWinInternal
|
|
{
|
|
|
|
//****************************************
|
|
// Scene
|
|
//****************************************
|
|
|
|
Scene::Scene( Workspace* ws )
|
|
: wspace( ws )
|
|
{
|
|
}
|
|
|
|
Scene::~Scene()
|
|
{
|
|
}
|
|
|
|
void Scene::setWindows( const ToplevelList& list )
|
|
{
|
|
windows = list;
|
|
}
|
|
|
|
Scene* scene;
|
|
|
|
} // namespace
|