csharptest | d9c59e6 | 2010-11-04 19:36:28 -0500 | [diff] [blame^] | 1 | using System; |
| 2 | |
| 3 | namespace Google.ProtocolBuffers { |
| 4 | |
| 5 | public interface IGeneratedExtensionLite { |
| 6 | int Number { get; } |
| 7 | object ContainingType { get; } |
| 8 | IMessageLite MessageDefaultInstance { get; } |
| 9 | } |
| 10 | |
| 11 | public class GeneratedExtensionLite : IGeneratedExtensionLite { |
| 12 | public int Number { |
| 13 | get { throw new NotImplementedException(); } |
| 14 | } |
| 15 | |
| 16 | public object ContainingType { |
| 17 | get { throw new NotImplementedException(); } |
| 18 | } |
| 19 | |
| 20 | public IMessageLite MessageDefaultInstance { |
| 21 | get { throw new NotImplementedException(); } |
| 22 | } |
| 23 | } |
| 24 | } |