Browse Source

Added an object variable to store type references.

pull/1/head
triton 13 years ago
parent
commit
b81271ada7
  1. 7
      src/Bridge/Library.cs

7
src/Bridge/Library.cs

@ -26,14 +26,10 @@ namespace Cxxi
{ {
public TranslationUnit(string file) public TranslationUnit(string file)
{ {
ForwardReferences = new List<Declaration>();
Macros = new List<MacroDefinition>(); Macros = new List<MacroDefinition>();
FilePath = file; FilePath = file;
} }
/// Forward reference declarations.
public List<Declaration> ForwardReferences;
/// Contains the macros present in the unit. /// Contains the macros present in the unit.
public List<MacroDefinition> Macros; public List<MacroDefinition> Macros;
@ -62,6 +58,9 @@ namespace Cxxi
/// Contains the include path. /// Contains the include path.
public string IncludePath; public string IncludePath;
/// Type references object.
public object TypeReferences;
} }
/// <summary> /// <summary>

Loading…
Cancel
Save