mirror of https://github.com/mono/CppSharp.git
6 changed files with 33 additions and 36 deletions
@ -1,11 +1,14 @@ |
|||||||
namespace Cxxi.Types |
using System.Collections.Generic; |
||||||
|
|
||||||
|
namespace Cxxi.Types |
||||||
{ |
{ |
||||||
public interface ITypePrinter : ITypeVisitor<string> |
public interface ITypePrinter : ITypeVisitor<string> |
||||||
{ |
{ |
||||||
Library Library { get; set; } |
Library Library { get; set; } |
||||||
|
|
||||||
string GetArgumentsString(FunctionType function, bool hasNames); |
string VisitParameters(IEnumerable<Parameter> @params, bool hasNames); |
||||||
string GetArgumentString(Parameter arg, bool hasName = true); |
string VisitParameter(Parameter param, bool hasName = true); |
||||||
string ToDelegateString(FunctionType function); |
|
||||||
|
string VisitDelegate(FunctionType function); |
||||||
} |
} |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue