mirror of
https://github.com/KDE/krfb
synced 2026-07-01 07:41:17 -07:00
Command used to format: git ls-files | grep -E '\.(cpp|h|hpp|c)$' | xargs clang-format -i --style file
19 lines
334 B
C++
19 lines
334 B
C++
/* This file is part of the KDE project
|
|
SPDX-FileCopyrightText: 2016 Oleg Chernovskiy <kanedias@xaker.ru>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "eventsplugin.h"
|
|
|
|
#include "events.h"
|
|
|
|
EventsPlugin::EventsPlugin(QObject *parent, const QVariantList &)
|
|
: QObject(parent)
|
|
{
|
|
}
|
|
|
|
EventsPlugin::~EventsPlugin()
|
|
{
|
|
}
|