v8toolkit  0.0.1
Utility library for embedding V8 Javascript engine in a c++ program
clang.h
Go to the documentation of this file.
1 #pragma once
2 
3 
4 #pragma clang diagnostic push
5 #pragma clang diagnostic ignored "-Wshadow"
6 
7 #include "clang/Frontend/FrontendPluginRegistry.h"
8 #include "clang/AST/AST.h"
9 #include "clang/AST/ASTConsumer.h"
10 #include "clang/ASTMatchers/ASTMatchers.h"
11 #include "clang/ASTMatchers/ASTMatchFinder.h"
12 #include "clang/Frontend/CompilerInstance.h"
13 #include "clang/Frontend/FrontendActions.h"
14 #include "clang/Tooling/CommonOptionsParser.h"
15 #include "clang/Tooling/Tooling.h"
16 #include "clang/Rewrite/Core/Rewriter.h"
17 #include "clang/Lex/Lexer.h"
18 #include "clang/Lex/Preprocessor.h"
19 #include "clang/AST/Comment.h"
20 #include "llvm/Support/raw_ostream.h"
21 
22 #pragma clang diagnostic pop
23 
24 
25 using namespace clang;
26 //using namespace clang::ast_matchers;
27 using namespace clang::driver;
28 using namespace clang::tooling;
29 using namespace clang::comments;
30 using namespace std;
31 
32 
33 // this is just a helper for including all the clang header files
STL namespace.