aboutsummaryrefslogtreecommitdiff
path: root/csharp/ProtocolBuffers/IService.cs
diff options
context:
space:
mode:
authorJon Skeet <skeet@pobox.com>2008-08-14 20:35:21 +0100
committerJon Skeet <skeet@pobox.com>2008-08-14 20:35:21 +0100
commit575083ae9c3ecb17e14ae29aa20b784940fcdfd1 (patch)
treea8b536c9b8e2982e9e904e25b8489404cd727155 /csharp/ProtocolBuffers/IService.cs
parent1353315dede3e22266df73fca8dd421119597e46 (diff)
downloadprotobuf-575083ae9c3ecb17e14ae29aa20b784940fcdfd1.tar.gz
protobuf-575083ae9c3ecb17e14ae29aa20b784940fcdfd1.tar.bz2
protobuf-575083ae9c3ecb17e14ae29aa20b784940fcdfd1.zip
Initial support for services and extensions. Incomplete, but enough to get generated unit test files to compile.
Diffstat (limited to 'csharp/ProtocolBuffers/IService.cs')
-rw-r--r--csharp/ProtocolBuffers/IService.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/csharp/ProtocolBuffers/IService.cs b/csharp/ProtocolBuffers/IService.cs
new file mode 100644
index 00000000..d53395aa
--- /dev/null
+++ b/csharp/ProtocolBuffers/IService.cs
@@ -0,0 +1,9 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Google.ProtocolBuffers {
+ public interface IService {
+ // TODO(jonskeet): Fill this in
+ }
+}