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.
20 lines
301 B
20 lines
301 B
#pragma once |
|
|
|
/* |
|
* SPDX-FileCopyrightText: 2009 Craig Drummond <craig@kde.org> |
|
* SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
class QTemporaryDir; |
|
|
|
#include <QSet> |
|
#include <QUrl> |
|
|
|
namespace KFI |
|
{ |
|
namespace FontsPackage |
|
{ |
|
QSet<QUrl> extract(const QString &fileName, QTemporaryDir **tempDir); |
|
} |
|
|
|
}
|
|
|