mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 07:12:18 +00:00
d2ebfd0519
Screw the description like that inbred T3Q
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
|