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

« back to all changes in this revision

Viewing changes to languages/cpp/parser/parentvisitor.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
   (c) 2009 Bertjan Broeksema <b.broeksema@home.nl>
 
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 PARENTVISITOR_H
 
20
#define PARENTVISITOR_H
 
21
 
 
22
#include "default_visitor.h"
 
23
 
 
24
class ParseSession;
 
25
 
 
26
/**
 
27
 * Sets the parent node of each AST node. The root node won't have a parent set.
 
28
 */
 
29
class ParentVisitor : public DefaultVisitor
 
30
{
 
31
  public:
 
32
    ParentVisitor(ParseSession* session);
 
33
    virtual void visit(AST* node);
 
34
 
 
35
  private:
 
36
    AST *m_currentParent;
 
37
    ParseSession* m_session;
 
38
};
 
39
 
 
40
#endif // PARENTVISITOR_H