1/*
2 SPDX-FileCopyrightText: 2006-2007 Kevin Ottens <ervin@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
5*/
6
7#ifndef SOLID_MANAGERBASE_P_H
8#define SOLID_MANAGERBASE_P_H
9
10#include <QObject>
11
12#include "ifaces/devicemanager.h"
13#include "solid/solid_export.h"
14
15namespace Solid
16{
17class ManagerBasePrivate
18{
19public:
20 ManagerBasePrivate();
21 virtual ~ManagerBasePrivate();
22 void loadBackends();
23
24 QList<Ifaces::DeviceManager *> managerBackends() const;
25
26private:
27 QList<Ifaces::DeviceManager *> m_backends;
28};
29}
30
31#endif
32

source code of solid/src/solid/devices/managerbase_p.h