aboutsummaryrefslogtreecommitdiff
path: root/csharp/ProtoGen/SourceFileGenerator.cs
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/ProtoGen/SourceFileGenerator.cs')
-rw-r--r--csharp/ProtoGen/SourceFileGenerator.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/csharp/ProtoGen/SourceFileGenerator.cs b/csharp/ProtoGen/SourceFileGenerator.cs
deleted file mode 100644
index 1984d297..00000000
--- a/csharp/ProtoGen/SourceFileGenerator.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.IO;
-using System.Text;
-using Google.ProtocolBuffers.Descriptors;
-
-namespace Google.ProtocolBuffers.ProtoGen {
- /// <summary>
- /// Generator to hold a TextGenerator, generate namespace aliases etc.
- /// Each source file created uses one of these, and it can be used to create
- /// multiple classes within the same file.
- /// </summary>
- internal class SourceFileGenerator {
-
- private readonly TextGenerator output;
-
- private SourceFileGenerator(TextWriter writer) {
- output = new TextGenerator(writer);
- }
-
- /// <summary>
- /// Creates a ClassFileGenerator for the given writer, which will be closed
- /// when the instance is disposed. The specified namespace is created, if it's non-null.
- /// </summary>
- internal static SourceFileGenerator ForWriter(TextWriter writer) {
- return new SourceFileGenerator(writer);
- }
- }
-}