~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to buildtools/lib/base/kdevbuildtool.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2006-05-23 18:39:42 UTC
  • Revision ID: james.westby@ubuntu.com-20060523183942-hucifbvh68k2bwz7
Tags: upstream-3.3.2
Import upstream version 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of the KDE project
 
2
   Copyright (C) 1999-2001 Bernd Gehrmann <bernd@kdevelop.org>
 
3
   Copyright (C) 2004 Alexander Dymo <adymo@kdevelop.org>
 
4
 
 
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.
 
9
 
 
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.
 
14
 
 
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., 59 Temple Place - Suite 330,
 
18
   Boston, MA 02111-1307, USA.
 
19
*/
 
20
#ifndef KDEVBUILDTOOL_H
 
21
#define KDEVBUILDTOOL_H
 
22
 
 
23
#include <kdevproject.h>
 
24
 
 
25
class KDevMakeFrontend;
 
26
class KDevAppFrontend;
 
27
 
 
28
/**Base class for KDevelop build tool support plugins.*/
 
29
class KDevBuildTool: public KDevProject
 
30
{
 
31
public:
 
32
    KDevBuildTool(const KDevPluginInfo* info, QObject* parent, const char* name);
 
33
 
 
34
    /**@return The make frontend.*/
 
35
    KDevMakeFrontend *makeFrontend();
 
36
    /**@return The application frontend.*/
 
37
    KDevAppFrontend *appFrontend();
 
38
 
 
39
};
 
40
 
 
41
#endif