3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-01-31 07:12:18 +00:00
Brooklyn/plasma/kcms/keyboard/layoutnames.h
Scare Crowe d2ebfd0519 QortalOS Titan 5.60.12
Screw the description like that inbred T3Q
2022-03-05 21:17:59 +05:00

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