diff --git a/src/Bridge/Delegate.cs b/src/Bridge/Delegate.cs new file mode 100644 index 00000000..b6362c41 --- /dev/null +++ b/src/Bridge/Delegate.cs @@ -0,0 +1,12 @@ +namespace Cxxi +{ + public class Delegate : Declaration + { + public FunctionType Type; + + public override T Visit(IDeclVisitor visitor) + { + return visitor.VisitDeclaration(this); + } + } +}