1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-01-31 03:12:44 +00:00
transmission/qt/DBusInteropHelper.h
Charles Kerr fcda077cdd
chore: remove extraneous/default class destructors (#1317)
* chore: remove extraneous/default class destructors

* fixup! chore: remove extraneous/default class destructors
2020-06-15 09:30:29 -05:00

25 lines
430 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;
bool isConnected() const;
QVariant addMetainfo(QString const& metainfo);
static void registerObject(QObject* parent);
};