Browse Source

Rename the Native field in Library to make it clear it refers to the shared library name.

pull/1/head
triton 13 years ago
parent
commit
a4e007bfc1
  1. 6
      src/Bridge/Library.cs

6
src/Bridge/Library.cs

@ -64,13 +64,13 @@ namespace Cxxi @@ -64,13 +64,13 @@ namespace Cxxi
public class Library
{
public string Name;
public string Native;
public string SharedLibrary;
public List<TranslationUnit> TranslationUnits;
public Library(string name, string native)
public Library(string name, string sharedLibrary)
{
Name = name;
Native = native;
SharedLibrary = sharedLibrary;
TranslationUnits = new List<TranslationUnit>();
}

Loading…
Cancel
Save