Tools and libraries to glue C/C++ APIs to high-level languages
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

24 lines
571 B

using System.Collections.Generic;
namespace CppSharp.AST
{
public class Event : Declaration, ITypedDecl
{
public Event()
{
Parameters = new List<Parameter>();
}
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<Parameter> Parameters;
public Declaration OriginalDeclaration { get; set; }
}
}