// // Created by erki on 02.03.21. // #ifndef C_ANALYZER_OPERATIONFINDERASTACTION_HPP #define C_ANALYZER_OPERATIONFINDERASTACTION_HPP #include #include class OperationFinder; class OperationFinderAstAction { public: explicit OperationFinderAstAction(OperationFinder* op_finder); std::unique_ptr newASTConsumer(); private: OperationFinder* _op_finder; }; #endif //C_ANALYZER_OPERATIONFINDERASTACTION_HPP