Browse Source

[ast] Added IsStatic property to fields.

pull/828/head
Joao Matos 8 years ago
parent
commit
97cc7e53df
  1. 3
      src/AST/Field.cs

3
src/AST/Field.cs

@ -10,10 +10,13 @@ namespace CppSharp.AST @@ -10,10 +10,13 @@ namespace CppSharp.AST
public Class Class { get; set; }
public bool IsStatic { get; set; }
public bool IsBitField { get; set; }
public uint BitWidth { get; set; }
public Field()
{
}

Loading…
Cancel
Save