File indexing completed on 2024-10-06 12:24:00
0001 /* 0002 This file is part of the KDE libraries 0003 SPDX-FileCopyrightText: 2009 David Faure <faure@kde.org> 0004 0005 SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 0006 */ 0007 0008 #ifndef KBUILDSYCOCAINTERFACE_H 0009 #define KBUILDSYCOCAINTERFACE_H 0010 0011 #include <kservice.h> 0012 0013 class KBuildSycocaInterface 0014 { 0015 public: 0016 virtual ~KBuildSycocaInterface(); 0017 virtual KService::Ptr createService(const QString &path) = 0; 0018 }; 0019 0020 #endif /* KBUILDSYCOCAINTERFACE_H */