From ff0eb8e4968cfecba5932444e2afc19dd249c1bb Mon Sep 17 00:00:00 2001 From: triton Date: Mon, 15 Jul 2013 18:33:30 +0100 Subject: [PATCH] Added missing MaxIndent option. --- src/Generator/Driver.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Generator/Driver.cs b/src/Generator/Driver.cs index 1efdda87..e2588fd8 100644 --- a/src/Generator/Driver.cs +++ b/src/Generator/Driver.cs @@ -174,6 +174,7 @@ namespace CppSharp GenerateLibraryNamespace = true; GeneratePartialClasses = true; OutputInteropIncludes = true; + MaxIndent = 80; } // General options @@ -214,6 +215,7 @@ namespace CppSharp public string IncludePrefix; public bool WriteOnlyWhenChanged; public Func GenerateName; + public int MaxIndent; } public class InvalidOptionException : Exception