1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 01:03:01 +00:00
transmission/qt/ComInteropHelper.h
2016-09-02 23:10:15 +03:00

34 lines
572 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
#include <memory>
class QAxObject;
class QObject;
class QString;
class QVariant;
class ComInteropHelper
{
public:
ComInteropHelper ();
~ComInteropHelper ();
bool isConnected () const;
QVariant addMetainfo (const QString& metainfo);
static void initialize ();
static void registerObject (QObject * parent);
private:
std::unique_ptr<QAxObject> m_client;
};