summaryrefslogtreecommitdiff
path: root/cpp/demo/Ice/protobuf/Person.proto
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/demo/Ice/protobuf/Person.proto')
-rw-r--r--cpp/demo/Ice/protobuf/Person.proto16
1 files changed, 16 insertions, 0 deletions
diff --git a/cpp/demo/Ice/protobuf/Person.proto b/cpp/demo/Ice/protobuf/Person.proto
new file mode 100644
index 00000000000..b68990dbc48
--- /dev/null
+++ b/cpp/demo/Ice/protobuf/Person.proto
@@ -0,0 +1,16 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+package tutorial;
+
+message Person {
+ required int32 id = 1;
+ required string name = 2;
+ optional string email = 3;
+}