From ff18d6fbf1edf5116642d44df6e7e5f1c0a74c25 Mon Sep 17 00:00:00 2001 From: triton Date: Thu, 14 Mar 2013 12:05:38 +0000 Subject: [PATCH] Added an option to allow not using a top-level library namespace (useful if your native library is already namespaced). --- src/Generator/Driver.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Generator/Driver.cs b/src/Generator/Driver.cs index d1f73bb2..8cd000ca 100644 --- a/src/Generator/Driver.cs +++ b/src/Generator/Driver.cs @@ -163,11 +163,13 @@ namespace Cxxi Headers = new List(); Assembly = string.Empty; GeneratorKind = LanguageGeneratorKind.CSharp; + GenerateLibraryNamespace = true; } public bool Verbose = false; public bool ShowHelpText = false; public bool OutputDebug = false; + public bool GenerateLibraryNamespace; public string OutputNamespace; public string OutputDir; public string LibraryName;