aboutsummaryrefslogtreecommitdiff
path: root/csharp/ProtocolBuffers/ExtendableMessage.cs
diff options
context:
space:
mode:
authorJon Skeet <skeet@pobox.com>2008-08-14 20:35:32 +0100
committerJon Skeet <skeet@pobox.com>2008-08-14 20:35:32 +0100
commit48ce28bf2fed8edde98f14c79807b4f4411cca6c (patch)
treeeb68459cdde93fa1be14517650e7c0d0bba3a6c3 /csharp/ProtocolBuffers/ExtendableMessage.cs
parent5923b37223a013139ff0b01558eb37a206c33fd1 (diff)
downloadprotobuf-48ce28bf2fed8edde98f14c79807b4f4411cca6c.tar.gz
protobuf-48ce28bf2fed8edde98f14c79807b4f4411cca6c.tar.bz2
protobuf-48ce28bf2fed8edde98f14c79807b4f4411cca6c.zip
Copyright fixes, a bit of documentation, and removed unnecessary using directives.
Diffstat (limited to 'csharp/ProtocolBuffers/ExtendableMessage.cs')
-rw-r--r--csharp/ProtocolBuffers/ExtendableMessage.cs20
1 files changed, 17 insertions, 3 deletions
diff --git a/csharp/ProtocolBuffers/ExtendableMessage.cs b/csharp/ProtocolBuffers/ExtendableMessage.cs
index 84a69b53..c3b37dd5 100644
--- a/csharp/ProtocolBuffers/ExtendableMessage.cs
+++ b/csharp/ProtocolBuffers/ExtendableMessage.cs
@@ -1,8 +1,22 @@
-using System;
+// Protocol Buffers - Google's data interchange format
+// Copyright 2008 Google Inc.
+// http://code.google.com/p/protobuf/
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+using System;
using System.Collections.Generic;
-using System.Text;
-using Google.ProtocolBuffers.Descriptors;
using Google.ProtocolBuffers.Collections;
+using Google.ProtocolBuffers.Descriptors;
namespace Google.ProtocolBuffers {
public abstract class ExtendableMessage<TMessage, TBuilder> : GeneratedMessage<TMessage, TBuilder>