You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

24 lines
422 B

/*
SPDX-FileCopyrightText: 2018 Aleix Pol Gonzalez <aleixpol@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef OKULARSINGLETON_H
#define OKULARSINGLETON_H
#include <QObject>
#include <QStringList>
class OkularSingleton : public QObject
{
Q_OBJECT
Q_PROPERTY(QStringList nameFilters READ nameFilters CONSTANT)
public:
OkularSingleton();
QStringList nameFilters() const;
};
#endif