Browse Source

Stubbed out delegate visiting support.

pull/1/head
triton 13 years ago
parent
commit
c72c1e1dd6
  1. 10
      src/Generator/Generators/CLI/CLIMarshal.cs

10
src/Generator/Generators/CLI/CLIMarshal.cs

@ -189,6 +189,11 @@ namespace Cxxi.Generators.CLI
{ {
throw new NotImplementedException(); throw new NotImplementedException();
} }
public bool VisitDelegate(Delegate @delegate)
{
throw new NotImplementedException();
}
} }
public class CLIMarshalManagedToNativePrinter : ITypeVisitor<bool>, public class CLIMarshalManagedToNativePrinter : ITypeVisitor<bool>,
@ -407,5 +412,10 @@ namespace Cxxi.Generators.CLI
{ {
throw new NotImplementedException(); throw new NotImplementedException();
} }
public bool VisitDelegate(Delegate @delegate)
{
throw new NotImplementedException();
}
} }
} }

Loading…
Cancel
Save