diff --git a/src/Bridge/Property.cs b/src/Bridge/Property.cs
index 85ed4889..4d761bcb 100644
--- a/src/Bridge/Property.cs
+++ b/src/Bridge/Property.cs
@@ -6,7 +6,7 @@ namespace Cxxi
///
/// Represents a C++ property.
///
- public class Property
+ public class Property : Declaration
{
public Property(string name, Declaration type)
{
@@ -14,12 +14,6 @@ namespace Cxxi
Type = type;
}
- public string Name
- {
- get;
- set;
- }
-
public Declaration Type
{
get;
@@ -37,5 +31,10 @@ namespace Cxxi
get;
set;
}
+
+ public override T Visit(IDeclVisitor visitor)
+ {
+ throw new NotImplementedException();
+ }
}
}
\ No newline at end of file