Browse Source

Change the CodeGenerator and Program class to public since the Generator can now be used as a library.

pull/1/head
triton 13 years ago
parent
commit
d2ebc48068
  1. 6
      src/Generator/CodeGenerator.cs

6
src/Generator/CodeGenerator.cs

@ -9,7 +9,7 @@ using System.IO;
namespace Cxxi namespace Cxxi
{ {
class CodeGenerator public class CodeGenerator
{ {
private readonly Options options; private readonly Options options;
private Library library; private Library library;
@ -130,7 +130,7 @@ namespace Cxxi
public string Assembly; public string Assembly;
} }
class Program public class Program
{ {
static void ShowHelp(OptionSet options) static void ShowHelp(OptionSet options)
{ {
@ -217,7 +217,7 @@ namespace Cxxi
return true; return true;
} }
static void Main(String[] args) public static void Main(String[] args)
{ {
var options = new Options(); var options = new Options();

Loading…
Cancel
Save