Browse Source

Added an option to allow not using a top-level library namespace (useful if your native library is already namespaced).

pull/1/head
triton 13 years ago
parent
commit
ff18d6fbf1
  1. 2
      src/Generator/Driver.cs

2
src/Generator/Driver.cs

@ -163,11 +163,13 @@ namespace Cxxi
Headers = new List<string>(); Headers = new List<string>();
Assembly = string.Empty; Assembly = string.Empty;
GeneratorKind = LanguageGeneratorKind.CSharp; GeneratorKind = LanguageGeneratorKind.CSharp;
GenerateLibraryNamespace = true;
} }
public bool Verbose = false; public bool Verbose = false;
public bool ShowHelpText = false; public bool ShowHelpText = false;
public bool OutputDebug = false; public bool OutputDebug = false;
public bool GenerateLibraryNamespace;
public string OutputNamespace; public string OutputNamespace;
public string OutputDir; public string OutputDir;
public string LibraryName; public string LibraryName;

Loading…
Cancel
Save