mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-06 01:45:38 +08:00
29 lines
773 B
C++
29 lines
773 B
C++
/* Copyright (C) 2013 VATSIM Community / contributors
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef BLACKMISC_CPP2XML_H
|
|
#define BLACKMISC_CPP2XML_H
|
|
|
|
#include <QDBusMetaType>
|
|
#include <QMetaType>
|
|
|
|
/*!
|
|
* \brief Plugin to register all relevant blackmisc classes for QDBusCpp2XmlPlugin
|
|
*/
|
|
class BlackmiscPlugin : public QObject, public QDBusCpp2XmlPlugin
|
|
{
|
|
Q_OBJECT
|
|
Q_INTERFACES(QDBusCpp2XmlPlugin)
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.DBus.Cpp2XmlPlugin")
|
|
|
|
public:
|
|
/*!
|
|
* \brief Register Metatypes
|
|
*/
|
|
virtual void registerMetaTypes();
|
|
};
|
|
|
|
#endif // BLACKMISC_CPP2XML_H
|