mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 14:54:17 +00:00
21 lines
452 B
C
21 lines
452 B
C
|
#ifndef LAYOUTNAMES_H
|
||
|
#define LAYOUTNAMES_H
|
||
|
|
||
|
#include <QMetaType>
|
||
|
|
||
|
class QDBusArgument;
|
||
|
|
||
|
struct LayoutNames {
|
||
|
static void registerMetaType();
|
||
|
|
||
|
QString shortName;
|
||
|
QString displayName;
|
||
|
QString longName;
|
||
|
};
|
||
|
Q_DECLARE_METATYPE(LayoutNames)
|
||
|
|
||
|
QDBusArgument &operator<<(QDBusArgument &argument, const LayoutNames &layoutNames);
|
||
|
const QDBusArgument &operator>>(const QDBusArgument &argument, LayoutNames &layoutNames);
|
||
|
|
||
|
#endif // LAYOUTNAMES_H
|