mirror of https://github.com/mono/CppSharp.git
5 changed files with 26 additions and 9 deletions
@ -0,0 +1,11 @@ |
|||||||
|
namespace Cxxi.Types |
||||||
|
{ |
||||||
|
public interface ITypePrinter : ITypeVisitor<string> |
||||||
|
{ |
||||||
|
Library Library { get; set; } |
||||||
|
|
||||||
|
string GetArgumentsString(FunctionType function, bool hasNames); |
||||||
|
string GetArgumentString(Parameter arg, bool hasName = true); |
||||||
|
string ToDelegateString(FunctionType function); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue