File indexing completed on 2024-05-12 16:59:29

0001 /*
0002  * SPDX-FileCopyrightText: 2014 Martin Gräßlin <mgraesslin@kde.org>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005  */
0006 #include "decorationbridge.h"
0007 
0008 Q_DECLARE_METATYPE(Qt::MouseButton)
0009 
0010 namespace KDecoration2
0011 {
0012 DecorationBridge::DecorationBridge(QObject *parent)
0013     : QObject(parent)
0014 {
0015     qRegisterMetaType<Qt::MouseButton>();
0016 }
0017 
0018 DecorationBridge::~DecorationBridge() = default;
0019 
0020 }