/* This file is part of the dbusmenu-qt library SPDX-FileCopyrightText: 2009 Canonical Author: Aurelien Gateau SPDX-License-Identifier: LGPL-2.0-or-later */ #ifndef DBUSMENUSHORTCUT_H #define DBUSMENUSHORTCUT_H // Qt #include #include class QKeySequence; class DBusMenuShortcut : public QList { public: QKeySequence toKeySequence() const; static DBusMenuShortcut fromKeySequence(const QKeySequence &); }; Q_DECLARE_METATYPE(DBusMenuShortcut) #endif /* DBUSMENUSHORTCUT_H */