From b81271ada7aee7222834f37b286a997e7a7d8918 Mon Sep 17 00:00:00 2001 From: triton Date: Wed, 27 Feb 2013 00:06:28 +0000 Subject: [PATCH] Added an object variable to store type references. --- src/Bridge/Library.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/Bridge/Library.cs b/src/Bridge/Library.cs index 03343f7c..1c5f9628 100644 --- a/src/Bridge/Library.cs +++ b/src/Bridge/Library.cs @@ -26,14 +26,10 @@ namespace Cxxi { public TranslationUnit(string file) { - ForwardReferences = new List(); Macros = new List(); FilePath = file; } - /// Forward reference declarations. - public List ForwardReferences; - /// Contains the macros present in the unit. public List Macros; @@ -62,6 +58,9 @@ namespace Cxxi /// Contains the include path. public string IncludePath; + + /// Type references object. + public object TypeReferences; } ///