1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-01-04 22:11:23 +00:00
transmission/qt/InteropHelper.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

37 lines
671 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
#ifdef ENABLE_COM_INTEROP
#include "ComInteropHelper.h"
#endif
#ifdef ENABLE_DBUS_INTEROP
#include "DBusInteropHelper.h"
#endif
class QString;
class InteropHelper
{
public:
bool isConnected() const;
bool addMetainfo(QString const& metainfo);
static void initialize();
static void registerObject(QObject* parent);
private:
#ifdef ENABLE_DBUS_INTEROP
DBusInteropHelper dbus_client_ = {};
#endif
#ifdef ENABLE_COM_INTEROP
ComInteropHelper com_client_ = {};
#endif
};