Browse Source

Cosmetic changes.

pull/1/head
triton 13 years ago
parent
commit
b49637df93
  1. 14
      src/Generator/Generators/CSharp/CSharpTypePrinter.cs

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

@ -171,8 +171,8 @@ namespace CppSharp.Generators.CSharp
return pointee.Visit(this, quals); return pointee.Visit(this, quals);
} }
public CSharpTypePrinterResult VisitMemberPointerType( public CSharpTypePrinterResult VisitMemberPointerType(MemberPointerType member,
MemberPointerType member, TypeQualifiers quals) TypeQualifiers quals)
{ {
throw new NotImplementedException(); throw new NotImplementedException();
} }
@ -243,19 +243,21 @@ namespace CppSharp.Generators.CSharp
return param.Parameter.Name; return param.Parameter.Name;
} }
public CSharpTypePrinterResult VisitTemplateParameterSubstitutionType(TemplateParameterSubstitutionType param, public CSharpTypePrinterResult VisitTemplateParameterSubstitutionType(
TypeQualifiers quals) TemplateParameterSubstitutionType param, TypeQualifiers quals)
{ {
var type = param.Replacement.Type; var type = param.Replacement.Type;
return type.Visit(this, param.Replacement.Qualifiers); return type.Visit(this, param.Replacement.Qualifiers);
} }
public CSharpTypePrinterResult VisitInjectedClassNameType(InjectedClassNameType injected, TypeQualifiers quals) public CSharpTypePrinterResult VisitInjectedClassNameType(
InjectedClassNameType injected, TypeQualifiers quals)
{ {
return injected.Class.Name; return injected.Class.Name;
} }
public CSharpTypePrinterResult VisitDependentNameType(DependentNameType dependent, TypeQualifiers quals) public CSharpTypePrinterResult VisitDependentNameType(DependentNameType dependent,
TypeQualifiers quals)
{ {
throw new NotImplementedException(); throw new NotImplementedException();
} }

Loading…
Cancel
Save