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

Loading…
Cancel
Save