// // Created by erki on 07.03.21. // #ifndef C_ANALYZER_RUNONCODEFIXTURE_HPP #define C_ANALYZER_RUNONCODEFIXTURE_HPP #include #include #include struct RunOnCodeFixture { constexpr static char INPUT_FILE[] = "input.c"; OperationStorage storage; OperationFinder finder; OperationFinderAstAction action; RunOnCodeFixture(); bool runCode(const std::string& code); const std::vector& operator()(const std::string& code); }; #endif //C_ANALYZER_RUNONCODEFIXTURE_HPP