Browse Source

Add Expression property in Field, allows a field to have a "value"

pull/168/head
Øystein Krog 12 years ago
parent
commit
c8b69fd601
  1. 2
      src/AST/Field.cs

2
src/AST/Field.cs

@ -16,6 +16,8 @@ namespace CppSharp.AST @@ -16,6 +16,8 @@ namespace CppSharp.AST
get { return Offset / (sizeof (byte) * 8); }
}
public Expression Expression { get; set; }
public Field()
{
Offset = 0;

Loading…
Cancel
Save