From c72c1e1dd6914ad8864c3350c7aa5d889dafb993 Mon Sep 17 00:00:00 2001 From: triton Date: Sun, 20 Jan 2013 13:42:37 +0000 Subject: [PATCH] Stubbed out delegate visiting support. --- src/Generator/Generators/CLI/CLIMarshal.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/Generator/Generators/CLI/CLIMarshal.cs b/src/Generator/Generators/CLI/CLIMarshal.cs index 3e857a0a..8e2b04d4 100644 --- a/src/Generator/Generators/CLI/CLIMarshal.cs +++ b/src/Generator/Generators/CLI/CLIMarshal.cs @@ -189,6 +189,11 @@ namespace Cxxi.Generators.CLI { throw new NotImplementedException(); } + + public bool VisitDelegate(Delegate @delegate) + { + throw new NotImplementedException(); + } } public class CLIMarshalManagedToNativePrinter : ITypeVisitor, @@ -407,5 +412,10 @@ namespace Cxxi.Generators.CLI { throw new NotImplementedException(); } + + public bool VisitDelegate(Delegate @delegate) + { + throw new NotImplementedException(); + } } }