• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • KDevelop QMake parser
 

KDevelop QMake parser

  • buildtools
  • lib
  • parsers
  • qmake
qmakeastvisitor.h
1 /***************************************************************************
2  * Copyright (C) 2005 by Alexander Dymo *
3  * adymo@kdevelop.org *
4  * *
5  * This program is free software; you can redistribute it and/or modify *
6  * it under the terms of the GNU Library General Public License as *
7  * published by the Free Software Foundation; either version 2 of the *
8  * License, or (at your option) any later version. *
9  * *
10  * This program 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 *
13  * GNU General Public License for more details. *
14  * *
15  * You should have received a copy of the GNU Library General Public *
16  * License along with this program; if not, write to the *
17  * Free Software Foundation, Inc., *
18  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19  ***************************************************************************/
20 #ifndef TQMAKETQMAKEASTVISITOR_H
21 #define TQMAKETQMAKEASTVISITOR_H
22 
23 #include "qmakeast.h"
24 
25 namespace TQMake {
26 
27 class ASTVisitor{
28 public:
29  ASTVisitor() {}
30 
31  virtual void processProject(ProjectAST *);
32  virtual void enterRealProject(ProjectAST *) {}
33  virtual void leaveRealProject(ProjectAST *) {}
34  virtual void enterScope(ProjectAST *) {}
35  virtual void leaveScope(ProjectAST *) {}
36  virtual void enterFunctionScope(ProjectAST *) {}
37  virtual void leaveFunctionScope(ProjectAST *) {}
38  virtual void processAssignment(AssignmentAST *) {}
39  virtual void processNewLine(NewLineAST *) {}
40  virtual void processComment(CommentAST *) {}
41  virtual void processInclude(IncludeAST *) {}
42 };
43 
44 }
45 
46 #endif
TQMake
Definition: location.hh:47
qmakeast.h
Abstract Syntax Tree (AST) class declarations.

KDevelop QMake parser

Skip menu "KDevelop QMake parser"
  • Main Page
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Class Members

KDevelop QMake parser

Skip menu "KDevelop QMake parser"
  • buildtools
  •   lib
  •     base
  •     parsers
  •       autotools
  •       qmake
  •     widgets
  •   api
  • languages
  •   lib
  •     debugger
  •     designer_integration
  •     interfaces
  • lib
  •   catalog
  •   interfaces
  •     extensions
  •     external
  •     extras
  •   util
  •   widgets
  •     propeditor
  • parts
  •   documentation
  •     interfaces
  • src
  •   profileengine
  •     lib
Generated for KDevelop QMake parser by doxygen 1.8.13
This website is maintained by Timothy Pearson.