From c5865293988674420aee41cf571b9b57f59d4b02 Mon Sep 17 00:00:00 2001 From: Dimitar Dobrev Date: Sun, 10 Nov 2013 01:41:18 +0200 Subject: [PATCH] Added a property to the event to contain the declaration it wraps. Signed-off-by: Dimitar Dobrev --- src/AST/Event.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/AST/Event.cs b/src/AST/Event.cs index a9d69d90..59e2ee55 100644 --- a/src/AST/Event.cs +++ b/src/AST/Event.cs @@ -18,5 +18,7 @@ namespace CppSharp.AST public QualifiedType QualifiedType { get; set; } public List Parameters; + + public Declaration OriginalDeclaration { get; set; } } }