/** ** \file ast/visitor.hh ** \brief Definition of ast::Visitor. */ #pragma once #include #include #include namespace ast { /** \brief Root class of all Ast visitors. ** ** GenVisitor is the root class of all Ast visitors. */ template