File indexing completed on 2024-04-28 05:31:35

0001 /*
0002     SPDX-FileCopyrightText: 2019 David Edmundson <davidedmundson@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "cgroup_data_model.h"
0010 
0011 #include "processcore_export.h"
0012 
0013 namespace KSysGuard
0014 {
0015 class PROCESSCORE_EXPORT ApplicationDataModel : public CGroupDataModel
0016 {
0017     Q_OBJECT
0018 public:
0019     ApplicationDataModel(QObject *parent = nullptr);
0020     bool filterAcceptsCGroup(const QString &id) override;
0021 };
0022 
0023 }