3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-07 14:54:17 +00:00
Brooklyn/plasma/kcms/keyboard/layoutnames.h

21 lines
452 B
C
Raw Normal View History

#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