File indexing completed on 2024-05-12 04:34:10

0001 /*
0002     SPDX-FileCopyrightText: 2018 Aleix Pol Gonzalez <aleixpol@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef OKULARSINGLETON_H
0008 #define OKULARSINGLETON_H
0009 
0010 #include <QObject>
0011 #include <QStringList>
0012 
0013 class OkularSingleton : public QObject
0014 {
0015     Q_OBJECT
0016     Q_PROPERTY(QStringList nameFilters READ nameFilters CONSTANT)
0017 
0018 public:
0019     OkularSingleton();
0020 
0021     QStringList nameFilters() const;
0022 };
0023 
0024 #endif