kwin/effects/cube/cube_proxy.cpp

37 lines
681 B
C++
Raw Normal View History

2020-08-02 22:22:19 +00:00
/*
KWin - the KDE window manager
This file is part of the KDE project.
2020-08-02 22:22:19 +00:00
SPDX-FileCopyrightText: 2009 Martin Gräßlin <mgraesslin@kde.org>
2020-08-02 22:22:19 +00:00
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "cube_proxy.h"
#include "cube.h"
#include "cube_inside.h"
namespace KWin
{
2011-01-30 14:34:42 +00:00
CubeEffectProxy::CubeEffectProxy(CubeEffect* effect)
: m_effect(effect)
{
}
CubeEffectProxy::~CubeEffectProxy()
2011-01-30 14:34:42 +00:00
{
}
void CubeEffectProxy::registerCubeInsideEffect(CubeInsideEffect* effect)
{
m_effect->registerCubeInsideEffect(effect);
}
void CubeEffectProxy::unregisterCubeInsideEffect(CubeInsideEffect* effect)
{
m_effect->unregisterCubeInsideEffect(effect);
}
} // namespace