summaryrefslogtreecommitdiffstats
path: root/test/samples/uscxml/proto/Test.proto
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2012-11-07 22:20:09 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2012-11-07 22:20:09 (GMT)
commitda08a1d3c3bca8070c9b029cfc1f8faf9e34dd25 (patch)
treeb285148ab6ca415814d9370148f91736f83c852c /test/samples/uscxml/proto/Test.proto
parent0ae6c27d9322208053033d9b19c0ffffed3d99eb (diff)
downloaduscxml-da08a1d3c3bca8070c9b029cfc1f8faf9e34dd25.zip
uscxml-da08a1d3c3bca8070c9b029cfc1f8faf9e34dd25.tar.gz
uscxml-da08a1d3c3bca8070c9b029cfc1f8faf9e34dd25.tar.bz2
Committing local version again
Diffstat (limited to 'test/samples/uscxml/proto/Test.proto')
-rw-r--r--test/samples/uscxml/proto/Test.proto37
1 files changed, 37 insertions, 0 deletions
diff --git a/test/samples/uscxml/proto/Test.proto b/test/samples/uscxml/proto/Test.proto
new file mode 100644
index 0000000..4e7ab6a
--- /dev/null
+++ b/test/samples/uscxml/proto/Test.proto
@@ -0,0 +1,37 @@
+message AllTypes {
+ required double doubleType = 1;
+ required float floatType = 2;
+ required int32 int32Type = 3;
+ required int64 int64Type = 4;
+ required uint32 uint32Type = 5;
+ required uint64 uint64Type = 6;
+ required sint32 sint32Type = 7;
+ required sint64 sint64Type = 8;
+ required fixed32 fixed32Type = 9;
+ required fixed64 fixed64Type = 10;
+ required sfixed32 sfixed32Type = 11;
+ required sfixed64 sfixed64Type = 12;
+ required bool boolType = 13;
+ required string stringType = 14;
+ required bytes bytesType = 15;
+ optional AllTypes allTypes = 16;
+}
+
+message RepeatedTypes {
+ repeated double doubleType = 1;
+ repeated float floatType = 2;
+ repeated int32 int32Type = 3;
+ repeated int64 int64Type = 4;
+ repeated uint32 uint32Type = 5;
+ repeated uint64 uint64Type = 6;
+ repeated sint32 sint32Type = 7;
+ repeated sint64 sint64Type = 8;
+ repeated fixed32 fixed32Type = 9;
+ repeated fixed64 fixed64Type = 10;
+ repeated sfixed32 sfixed32Type = 11;
+ repeated sfixed64 sfixed64Type = 12;
+ repeated bool boolType = 13;
+ repeated string stringType = 14;
+ repeated bytes bytesType = 15;
+ repeated RepeatedTypes repeatedMessage = 16;
+}