File indexing completed on 2024-04-28 05:26:46

0001 /*
0002  *   SPDX-FileCopyrightText: 2013 Aleix Pol Gonzalez <aleixpol@blue-systems.com>
0003  *
0004  *   SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005  */
0006 
0007 #pragma once
0008 
0009 #include <QList>
0010 #include <QString>
0011 
0012 class BackendNotifierModule;
0013 
0014 class BackendNotifierFactory
0015 {
0016 public:
0017     BackendNotifierFactory();
0018 
0019     QList<BackendNotifierModule *> allBackends() const;
0020 };