Browse Source

Added VisitFunctionTemplateSpecializationDecl visitor implementations.

pull/1138/head
Joao Matos 9 years ago
parent
commit
deb6b8e560
  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
{ {
throw new NotImplementedException(); throw new NotImplementedException();
} }
public bool VisitFunctionTemplateSpecializationDecl(FunctionTemplateSpecialization specialization)
{
throw new NotImplementedException();
}
} }
#endregion #endregion

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

@ -474,5 +474,10 @@ namespace CppSharp.Generators.CLI
{ {
throw new NotImplementedException(); 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
{ {
throw new NotImplementedException(); throw new NotImplementedException();
} }
public CSharpTypePrinterResult VisitFunctionTemplateSpecializationDecl(FunctionTemplateSpecialization specialization)
{
throw new NotImplementedException();
}
} }
public static class CSharpTypePrinterExtensions public static class CSharpTypePrinterExtensions

5
src/Generator/Passes/CheckVirtualOverrideReturnCovariance.cs

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

5
src/Generator/Types/CppTypePrinter.cs

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

Loading…
Cancel
Save