#pragma once #include "antlr4-runtime.h" #include class HooCore { public: HooCore() {} ~HooCore() {} public: static std::any compile(std::string &input, std::string &moduleName); static antlr4::tree::ParseTree *parse(std::string &input); };