#include "data/parser/cxx/ASTAction.h" ASTAction::ASTAction(std::shared_ptr client) : m_client(client) { } ASTAction::~ASTAction() { } clang::ASTConsumer* ASTAction::CreateASTConsumer(clang::CompilerInstance& compiler, llvm::StringRef inFile) { return new ASTConsumer(&compiler.getASTContext(), m_client); }