From d9c59e66131b34833f04c591fa8fe8719afa0b47 Mon Sep 17 00:00:00 2001 From: csharptest Date: Thu, 4 Nov 2010 19:36:28 -0500 Subject: First pass at interface breakup --- src/ProtocolBuffers/GeneratedExtensionLite.cs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/ProtocolBuffers/GeneratedExtensionLite.cs (limited to 'src/ProtocolBuffers/GeneratedExtensionLite.cs') diff --git a/src/ProtocolBuffers/GeneratedExtensionLite.cs b/src/ProtocolBuffers/GeneratedExtensionLite.cs new file mode 100644 index 00000000..26794514 --- /dev/null +++ b/src/ProtocolBuffers/GeneratedExtensionLite.cs @@ -0,0 +1,24 @@ +using System; + +namespace Google.ProtocolBuffers { + + public interface IGeneratedExtensionLite { + int Number { get; } + object ContainingType { get; } + IMessageLite MessageDefaultInstance { get; } + } + + public class GeneratedExtensionLite : IGeneratedExtensionLite { + public int Number { + get { throw new NotImplementedException(); } + } + + public object ContainingType { + get { throw new NotImplementedException(); } + } + + public IMessageLite MessageDefaultInstance { + get { throw new NotImplementedException(); } + } + } +} \ No newline at end of file -- cgit v1.2.3