File indexing completed on 2024-04-28 07:39:35

0001 /*.
0002     SPDX-FileCopyrightText: 2007 Vladimir Kuznetsov <ks.vladimir@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef STEP_CHOICESMODEL_H
0008 #define STEP_CHOICESMODEL_H
0009 
0010 #include <QStandardItemModel>
0011 
0012 class ChoicesModel: public QStandardItemModel
0013 {
0014   Q_OBJECT
0015   
0016 public:
0017     explicit ChoicesModel(QObject* parent = nullptr): QStandardItemModel(parent) {}
0018 };
0019 
0020 Q_DECLARE_METATYPE(ChoicesModel*)
0021 
0022 #endif