File indexing completed on 2024-05-12 05:51:44

0001 /*  This file is part of the Kate project.
0002  *
0003  *  SPDX-FileCopyrightText: 2017 Héctor Mesa Jiménez <hector@lcc.uma.es>
0004  *
0005  *  SPDX-License-Identifier: LGPL-2.0-or-later
0006  */
0007 
0008 #pragma once
0009 
0010 #include <QStandardItemModel>
0011 
0012 class KateProjectCodeAnalysisSelector
0013 {
0014 public:
0015     /**
0016      * Model attachable to a code analysis tool selector.
0017      *
0018      * Each item contains a pointer to a KateProjectCodeAnalysisTool
0019      * associated to the role Qt::UserRole + 1
0020      */
0021     static QStandardItemModel *model(QObject *parent = nullptr);
0022 };