// // Created by erki on 24.02.21. // #ifndef C_ANALYZER_OPERATIONFINDERACTION_HPP #define C_ANALYZER_OPERATIONFINDERACTION_HPP #include class OperationFinderAction : public clang::RecursiveASTVisitor { public: bool VisitBinaryOperation(clang::BinaryOperator* bo); bool VisitUnaryOperation(clang::UnaryOperator* uo); bool VisitCompoundStatement(clang::CompoundStmt* cmp); private: }; #endif //C_ANALYZER_OPERATIONFINDERACTION_HPP