mirror of https://github.com/mono/CppSharp.git
8 changed files with 55 additions and 0 deletions
@ -0,0 +1,22 @@ |
|||||||
|
using System.Collections.Generic; |
||||||
|
|
||||||
|
namespace Cxxi |
||||||
|
{ |
||||||
|
public class Event : Declaration, ITypedDecl |
||||||
|
{ |
||||||
|
public Event() |
||||||
|
{ |
||||||
|
Parameters = new List<QualifiedType>(); |
||||||
|
} |
||||||
|
|
||||||
|
public override T Visit<T>(IDeclVisitor<T> visitor) |
||||||
|
{ |
||||||
|
return visitor.VisitEvent(this); |
||||||
|
} |
||||||
|
|
||||||
|
public Type Type { get { return QualifiedType.Type; } } |
||||||
|
public QualifiedType QualifiedType { get; set; } |
||||||
|
|
||||||
|
public List<QualifiedType> Parameters; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue