From d2ebc48068e168bfe6d88596d4cd9ca894092c66 Mon Sep 17 00:00:00 2001 From: triton Date: Wed, 30 Jan 2013 15:09:53 +0000 Subject: [PATCH] Change the CodeGenerator and Program class to public since the Generator can now be used as a library. --- src/Generator/CodeGenerator.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Generator/CodeGenerator.cs b/src/Generator/CodeGenerator.cs index 1b424bd7..7b7f29ad 100644 --- a/src/Generator/CodeGenerator.cs +++ b/src/Generator/CodeGenerator.cs @@ -9,7 +9,7 @@ using System.IO; namespace Cxxi { - class CodeGenerator + public class CodeGenerator { private readonly Options options; private Library library; @@ -130,7 +130,7 @@ namespace Cxxi public string Assembly; } - class Program + public class Program { static void ShowHelp(OptionSet options) { @@ -217,7 +217,7 @@ namespace Cxxi return true; } - static void Main(String[] args) + public static void Main(String[] args) { var options = new Options();