namespace CppSharp.AST { public class Delegate : Declaration { public FunctionType Type; public override T Visit(IDeclVisitor visitor) { return visitor.VisitDeclaration(this); } } }