Add line for debugging
[kdevelopdvcssupport.git] / project / importprojectjob.h
bloba8286a7909e35aee2207197bd6b43fd7338826f5
1 /* This file is part of KDevelop
2 Copyright 2004 Roberto Raggi <roberto@kdevelop.org>
3 Copyright 2007 Andreas Pakulat <apaku@gmx.de>
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to
17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
20 #ifndef KDEVIMPORTPROJECTJOB_H
21 #define KDEVIMPORTPROJECTJOB_H
23 #include <kjob.h>
24 // #include "projectmodel.h"
25 #include "projectexport.h"
27 class QStandardItem;
29 namespace ThreadWeaver
31 class Job;
34 namespace KDevelop
37 class IProjectFileManager;
39 class KDEVPLATFORMPROJECT_EXPORT ImportProjectJob: public KJob
41 Q_OBJECT
42 public:
43 ImportProjectJob(QStandardItem *folder, IProjectFileManager *importer);
44 virtual ~ImportProjectJob();
46 public:
47 void start();
49 private:
50 Q_PRIVATE_SLOT( d, void parseItem() )
51 class ImportProjectJobPrivate* const d;
52 friend class ImportProjectJobPrivate;
56 #endif // IMPORTPROJECTJOB_H