Browse Source

Added a property so a type map can signal that the type is to be ignored.

pull/1/head
triton 13 years ago
parent
commit
ba2862bc8d
  1. 5
      src/Generator/Types/TypeMap.cs

5
src/Generator/Types/TypeMap.cs

@ -32,6 +32,11 @@ namespace Cxxi.Types @@ -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; }

Loading…
Cancel
Save