File indexing completed on 2024-04-28 04:00:48

0001 /*
0002     SPDX-FileCopyrightText: 2006-2007 Kevin Ottens <ervin@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #ifndef SOLID_MANAGERBASE_P_H
0008 #define SOLID_MANAGERBASE_P_H
0009 
0010 #include <QObject>
0011 
0012 #include "solid/solid_export.h"
0013 
0014 namespace Solid
0015 {
0016 class ManagerBasePrivate
0017 {
0018 public:
0019     ManagerBasePrivate();
0020     virtual ~ManagerBasePrivate();
0021     void loadBackends();
0022 
0023     QList<QObject *> managerBackends() const;
0024 
0025 private:
0026     QList<QObject *> m_backends;
0027 };
0028 }
0029 
0030 #endif