|
|
@ -184,10 +184,16 @@ namespace CppSharp.Generators.CLI |
|
|
|
|
|
|
|
|
|
|
|
GenerateDeclarationCommon(@class); |
|
|
|
GenerateDeclarationCommon(@class); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (GenerateClassProlog(@class)) |
|
|
|
if (GenerateClassProlog(@class)) |
|
|
|
return; |
|
|
|
return; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
foreach (var @enum in @class.Enums) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
PushIndent(); |
|
|
|
|
|
|
|
GenerateEnum(@enum); |
|
|
|
|
|
|
|
PopIndent(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
var nativeType = string.Format("::{0}*", @class.QualifiedOriginalName); |
|
|
|
var nativeType = string.Format("::{0}*", @class.QualifiedOriginalName); |
|
|
|
|
|
|
|
|
|
|
|
if (@class.IsRefType) |
|
|
|
if (@class.IsRefType) |
|
|
|