From ba2862bc8d4b7967fc83a8a5d28567a7f3deaa4d Mon Sep 17 00:00:00 2001 From: triton Date: Fri, 18 Jan 2013 17:43:44 +0000 Subject: [PATCH] Added a property so a type map can signal that the type is to be ignored. --- src/Generator/Types/TypeMap.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Generator/Types/TypeMap.cs b/src/Generator/Types/TypeMap.cs index e1b1215e..d9b7d3fc 100644 --- a/src/Generator/Types/TypeMap.cs +++ b/src/Generator/Types/TypeMap.cs @@ -32,6 +32,11 @@ namespace Cxxi.Types public Type Type { get; set; } public Declaration Declaration { get; set; } + public virtual bool IsIgnored + { + get { return false; } + } + public virtual bool IsValueType { get { return false; }