File indexing completed on 2024-04-28 16:49:51

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 namespace KSysGuard
0012 {
0013 class Q_DECL_EXPORT ApplicationDataModel : public CGroupDataModel
0014 {
0015     Q_OBJECT
0016 public:
0017     ApplicationDataModel(QObject *parent = nullptr);
0018     bool filterAcceptsCGroup(const QString &id) override;
0019 };
0020 
0021 }