Browse Source

Added VisitFunctionTemplateSpecializationDecl visitor implementations.

pull/685/head
Joao Matos 9 years ago
parent
commit
2bac142976
  1. 5
      src/Generator.Tests/AST/TestAST.cs
  2. 5
      src/Generator/Generators/CLI/CLITypePrinter.cs
  3. 5
      src/Generator/Generators/CSharp/CSharpTypePrinter.cs
  4. 5
      src/Generator/Passes/CheckVirtualOverrideReturnCovariance.cs
  5. 5
      src/Generator/Types/CppTypePrinter.cs

5
src/Generator.Tests/AST/TestAST.cs

@ -190,6 +190,11 @@ namespace CppSharp.Generator.Tests.AST @@ -190,6 +190,11 @@ namespace CppSharp.Generator.Tests.AST
{
throw new NotImplementedException();
}
public bool VisitFunctionTemplateSpecializationDecl(FunctionTemplateSpecialization specialization)
{
throw new NotImplementedException();
}
}
#endregion

5
src/Generator/Generators/CLI/CLITypePrinter.cs

@ -474,5 +474,10 @@ namespace CppSharp.Generators.CLI @@ -474,5 +474,10 @@ namespace CppSharp.Generators.CLI
{
throw new NotImplementedException();
}
public string VisitFunctionTemplateSpecializationDecl(FunctionTemplateSpecialization specialization)
{
throw new NotImplementedException();
}
}
}

5
src/Generator/Generators/CSharp/CSharpTypePrinter.cs

@ -790,6 +790,11 @@ namespace CppSharp.Generators.CSharp @@ -790,6 +790,11 @@ namespace CppSharp.Generators.CSharp
{
throw new NotImplementedException();
}
public CSharpTypePrinterResult VisitFunctionTemplateSpecializationDecl(FunctionTemplateSpecialization specialization)
{
throw new NotImplementedException();
}
}
public static class CSharpTypePrinterExtensions

5
src/Generator/Passes/CheckVirtualOverrideReturnCovariance.cs

@ -283,6 +283,11 @@ namespace CppSharp.Passes @@ -283,6 +283,11 @@ namespace CppSharp.Passes
return false;
}
public bool VisitFunctionTemplateSpecializationDecl(FunctionTemplateSpecialization specialization)
{
throw new NotImplementedException();
}
#endregion
}

5
src/Generator/Types/CppTypePrinter.cs

@ -398,5 +398,10 @@ namespace CppSharp.Types @@ -398,5 +398,10 @@ namespace CppSharp.Types
{
throw new NotImplementedException();
}
public string VisitFunctionTemplateSpecializationDecl(FunctionTemplateSpecialization specialization)
{
throw new NotImplementedException();
}
}
}

Loading…
Cancel
Save