File indexing completed on 2024-05-19 05:54:11

0001 // This file was part of the KDE libraries
0002 // SPDX-FileCopyrightText: 2022 Tao Guo <guotao945@gmail.com>
0003 // SPDX-License-Identifier: GPL-2.0-or-later
0004 
0005 #ifndef QUICKCOMMANDDATA_H
0006 #define QUICKCOMMANDDATA_H
0007 
0008 #include <QString>
0009 
0010 class QuickCommandData
0011 {
0012 public:
0013     QString name;
0014     QString tooltip;
0015     QString command;
0016 };
0017 
0018 Q_DECLARE_METATYPE(QuickCommandData)
0019 
0020 #endif // QUICKCOMMANDDATA_H