Files
transmission/qt/DBusInteropHelper.h
Charles Kerr 51573a3c1e chore: clang-tidy cleanups (#1287)
* chore: fix syntax error in clang-tidy config file
2020-06-05 14:02:11 -05:00

27 lines
466 B
C++

/*
* This file Copyright (C) 2015 Mnemosyne LLC
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
*
*/
#pragma once
class QObject;
class QString;
class QVariant;
class DBusInteropHelper
{
public:
DBusInteropHelper() = default;
~DBusInteropHelper() = default;
bool isConnected() const;
QVariant addMetainfo(QString const& metainfo);
static void registerObject(QObject* parent);
};