Chisel
Frontend.h
Go to the documentation of this file.
1 #ifndef FRONTEND_H
2 #define FRONTEND_H
3 
4 #include "clang/Parse/ParseAST.h"
5 
6 #include <string>
7 
9 class Frontend {
10 public:
11  static bool Parse(std::string &FileName, clang::ASTConsumer *C);
12 };
13 
14 #endif // FRONTEND_H
Provides an independent frontend for any action on AST.
Definition: Frontend.h:9
static bool Parse(std::string &FileName, clang::ASTConsumer *C)
Definition: Frontend.cpp:9