1 | /* |
---|---|
2 | This file is part of the KDE libraries |
3 | SPDX-FileCopyrightText: 2009 David Faure <faure@kde.org> |
4 | |
5 | SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL |
6 | */ |
7 | |
8 | #ifndef KBUILDSYCOCAINTERFACE_H |
9 | #define KBUILDSYCOCAINTERFACE_H |
10 | |
11 | #include <kservice.h> |
12 | |
13 | class KBuildSycocaInterface |
14 | { |
15 | public: |
16 | virtual ~KBuildSycocaInterface(); |
17 | virtual KService::Ptr createService(const QString &path) = 0; |
18 | }; |
19 | |
20 | #endif /* KBUILDSYCOCAINTERFACE_H */ |
21 |