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

« back to all changes in this revision

Viewing changes to languages/cpp/codegen/unresolvedincludeassistant.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
/*
 
2
   Copyright 2009 David Nolden <david.nolden.kdevelop@art-master.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 version 2 as published by the Free Software Foundation.
 
7
 
 
8
   This library is distributed in the hope that it will be useful,
 
9
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
   Library General Public License for more details.
 
12
 
 
13
   You should have received a copy of the GNU Library General Public License
 
14
   along with this library; see the file COPYING.LIB.  If not, write to
 
15
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
16
   Boston, MA 02110-1301, USA.
 
17
*/
 
18
 
 
19
#ifndef CPP_MISSINGINCLUDEASSISTANT_H
 
20
#define CPP_MISSINGINCLUDEASSISTANT_H
 
21
 
 
22
#include <interfaces/iassistant.h>
 
23
#include <language/duchain/indexedstring.h>
 
24
#include <kurl.h>
 
25
 
 
26
 
 
27
namespace Cpp {
 
28
 
 
29
class AddCustomIncludePathAction : public KDevelop::IAssistantAction {
 
30
  Q_OBJECT
 
31
  public:
 
32
    AddCustomIncludePathAction(KDevelop::IndexedString url, QString directive);
 
33
    virtual QString description() const;
 
34
    virtual void execute();
 
35
    private:
 
36
    KDevelop::IndexedString m_url;
 
37
    QString m_directive;
 
38
};
 
39
 
 
40
class OpenProjectForFileAssistant : public KDevelop::IAssistantAction {
 
41
  public:
 
42
    OpenProjectForFileAssistant(KUrl);
 
43
    virtual QString description() const;
 
44
    virtual void execute();
 
45
    private:
 
46
    KUrl m_url;
 
47
};
 
48
 
 
49
class MissingIncludePathAssistant : public KDevelop::IAssistant
 
50
{
 
51
public:
 
52
  MissingIncludePathAssistant(KDevelop::IndexedString url, QString directive);
 
53
  virtual QString title() const;
 
54
  virtual QList< KDevelop::IAssistantAction::Ptr > actions() const;
 
55
  private:
 
56
  KDevelop::IndexedString m_url;
 
57
  QString m_directive;
 
58
};
 
59
 
 
60
}
 
61
 
 
62
#endif // CPP_MISSINGINCLUDEASSISTANT_H