mirror of https://github.com/mono/CppSharp.git
11 changed files with 57 additions and 2 deletions
@ -1,11 +1,14 @@ |
|||||||
|
|
||||||
namespace Cxxi |
namespace Cxxi |
||||||
{ |
{ |
||||||
public class Variable : Declaration |
public class Variable : Declaration, ITypedDecl |
||||||
{ |
{ |
||||||
public override T Visit<T>(IDeclVisitor<T> visitor) |
public override T Visit<T>(IDeclVisitor<T> visitor) |
||||||
{ |
{ |
||||||
throw new System.NotImplementedException(); |
return visitor.VisitVariableDecl(this); |
||||||
} |
} |
||||||
|
|
||||||
|
public Type Type { get { return QualifiedType.Type; } } |
||||||
|
public QualifiedType QualifiedType { get; set; } |
||||||
} |
} |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue