Vuo 2.4.4
Loading...
Searching...
No Matches
VuoPreprocessAction.hh
Go to the documentation of this file.
1
10#pragma once
11
12#include "clang/Frontend/FrontendActions.h"
14
20class VuoPreprocessAction : public clang::PrintPreprocessedAction
21{
22public:
23 VuoPreprocessAction(raw_ostream &output, unique_ptr<VuoPreprocessorCallbacks> preprocessorCallbacks);
24 bool BeginSourceFileAction(clang::CompilerInstance &CI);
25 void ExecuteAction();
26
27private:
28 raw_ostream &output;
29 unique_ptr<VuoPreprocessorCallbacks> preprocessorCallbacks;
30};