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