|
|
|
@ -37,7 +37,7 @@ namespace CppSharp.AST |
|
|
|
if (method.Kind == CXXMethodKind.Conversion) |
|
|
|
if (method.Kind == CXXMethodKind.Conversion) |
|
|
|
return true; |
|
|
|
return true; |
|
|
|
|
|
|
|
|
|
|
|
if (method.Access != AccessSpecifier.Public) |
|
|
|
if (method.Access == AccessSpecifier.Private) |
|
|
|
return true; |
|
|
|
return true; |
|
|
|
|
|
|
|
|
|
|
|
return false; |
|
|
|
return false; |
|
|
|
@ -45,7 +45,7 @@ namespace CppSharp.AST |
|
|
|
|
|
|
|
|
|
|
|
public static bool CheckIgnoreField(Field field) |
|
|
|
public static bool CheckIgnoreField(Field field) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if (field.Access != AccessSpecifier.Public) |
|
|
|
if (field.Access == AccessSpecifier.Private) |
|
|
|
return true; |
|
|
|
return true; |
|
|
|
|
|
|
|
|
|
|
|
return field.Ignore; |
|
|
|
return field.Ignore; |
|
|
|
|