diff --git a/src/Bridge/ASTVisitor.cs b/src/Bridge/ASTVisitor.cs index cce3dc03..e17e1bd2 100644 --- a/src/Bridge/ASTVisitor.cs +++ b/src/Bridge/ASTVisitor.cs @@ -10,14 +10,18 @@ namespace Cxxi bool AlreadyVisited(Type type); } + public interface IAstVisitor : ITypeVisitor, IDeclVisitor + { + + } + /// /// Base class for AST visitors. /// You can override the methods to customize the behaviour, by default /// this will visit all the nodes in a default way that should be useful /// for a lot of applications. /// - public abstract class AstVisitor : ITypeVisitor, IDeclVisitor, - IAstVisited + public abstract class AstVisitor : IAstVisitor, IAstVisited { public ISet Visited { get; private set; }