File indexing completed on 2024-05-12 04:38:11

0001 /*
0002     SPDX-FileCopyrightText: 2004 Roberto Raggi <roberto@kdevelop.org>
0003     SPDX-FileCopyrightText: 2007 Andreas Pakulat <apaku@gmx.de>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #include "iprojectbuilder.h"
0009 
0010 namespace KDevelop
0011 {
0012 IProjectBuilder::~IProjectBuilder()
0013 {
0014 }
0015 
0016 
0017 KJob* IProjectBuilder::configure(IProject*)
0018 {
0019     return nullptr;
0020 }
0021 
0022 KJob* IProjectBuilder::prune(IProject*)
0023 {
0024     return nullptr;
0025 }
0026 
0027 QList< IProjectBuilder* > IProjectBuilder::additionalBuilderPlugins( IProject* project ) const
0028 {
0029     Q_UNUSED( project )
0030     return QList< IProjectBuilder* >();
0031 }
0032 
0033 }
0034