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

« back to all changes in this revision

Viewing changes to languages/cpp/parser/control.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 2002-2005 Roberto Raggi <roberto@kdevelop.org>
 
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 CONTROL_H
 
20
#define CONTROL_H
 
21
 
 
22
#include "symbol.h"
 
23
#include "memorypool.h"
 
24
#include <language/interfaces/iproblem.h>
 
25
#include <cppparserexport.h>
 
26
 
 
27
#include <QtCore/QHash>
 
28
 
 
29
struct Declarator;
 
30
struct Type;
 
31
 
 
32
/**Parser control information.
 
33
Provides problem tracking, context(visibility)-aware symbol name tables,
 
34
typedef table and other information about the parsing process.*/
 
35
class KDEVCPPPARSER_EXPORT Control
 
36
{
 
37
public:
 
38
  Control();
 
39
  ~Control();
 
40
 
 
41
  const QList<KDevelop::ProblemPointer>& problems() const;
 
42
 
 
43
  /**Adds a problem to the list of problems.*/
 
44
  void reportProblem(const KDevelop::ProblemPointer &problem);
 
45
 
 
46
  /**Returns whether there is a problem from the given source */
 
47
  bool hasProblem(KDevelop::ProblemData::Source source) const;
 
48
  
 
49
private:
 
50
  QList<KDevelop::ProblemPointer> m_problems;
 
51
};
 
52
 
 
53
#endif // CONTROL_H
 
54