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

« back to all changes in this revision

Viewing changes to projectbuilders/cmakebuilder/icmakebuilder.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2010-05-05 07:21:55 UTC
  • mfrom: (1.2.3 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505072155-h78lx19pu04sbhtn
Tags: 4:4.0.0-2
* Upload to unstable (Closes: #579947, #481832).
* Acknowledge obsolete NMU fixes (Closes: #562410, #546961).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of KDevelop
 
2
    Copyright 2007 Andreas Pakulat <apaku@gmx.de>
 
3
 
 
4
    This library is free software; you can redistribute it and/or
 
5
    modify it under the terms of the GNU Library General Public
 
6
    License as published by the Free Software Foundation; either
 
7
    version 2 of the License, or (at your option) any later version.
 
8
 
 
9
    This library is distributed in the hope that it will be useful,
 
10
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
    Library General Public License for more details.
 
13
 
 
14
    You should have received a copy of the GNU Library General Public License
 
15
    along with this library; see the file COPYING.LIB.  If not, write to
 
16
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
17
    Boston, MA 02110-1301, USA.
 
18
*/
 
19
#ifndef ICMAKEBUILDER_H
 
20
#define ICMAKEBUILDER_H
 
21
 
 
22
#include <project/interfaces/iprojectbuilder.h>
 
23
#include <interfaces/iextension.h>
 
24
 
 
25
/**
 
26
@author Andreas Pakulat
 
27
*/
 
28
 
 
29
class ICMakeBuilder : public KDevelop::IProjectBuilder
 
30
{
 
31
public:
 
32
//     virtual QString cmakeBinary(  KDevelop::IProject* project  ) = 0;
 
33
    virtual ~ICMakeBuilder() {}
 
34
 
 
35
};
 
36
 
 
37
KDEV_DECLARE_EXTENSION_INTERFACE( ICMakeBuilder, "org.kdevelop.ICMakeBuilder" )
 
38
Q_DECLARE_INTERFACE( ICMakeBuilder, "org.kdevelop.ICMakeBuilder" )
 
39
 
 
40
#endif