File indexing completed on 2024-04-14 04:02:07

0001 /*
0002     SPDX-FileCopyrightText: 2017 Albert Astals Cid <aacid@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef FILEFACTORY_H
0008 #define FILEFACTORY_H
0009 
0010 class QString;
0011 
0012 #include <QStringList>
0013 
0014 namespace FileFactory
0015 {
0016     bool folderExists(const QString &relativePath);
0017     QString locate(const QString &relativePath);
0018     QStringList locateAll(const QString &relativePath);
0019 };
0020 
0021 #endif