summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp')
-rw-r--r--cpp/slice/Ice/BuiltinSequences.ice43
1 files changed, 43 insertions, 0 deletions
diff --git a/cpp/slice/Ice/BuiltinSequences.ice b/cpp/slice/Ice/BuiltinSequences.ice
new file mode 100644
index 00000000000..d2de9213471
--- /dev/null
+++ b/cpp/slice/Ice/BuiltinSequences.ice
@@ -0,0 +1,43 @@
+// **********************************************************************
+//
+// Copyright (c) 2001
+// MutableRealms, Inc.
+// Huntsville, AL, USA
+//
+// All Rights Reserved
+//
+// **********************************************************************
+
+#ifndef ICE_BUILTIN_SEQUENCES_ICE
+#define ICE_BUILTIN_SEQUENCES_ICE
+
+module Ice
+{
+
+/** A sequence of bools. **/
+sequence<bool> BoolSeq;
+
+/** A sequence of bytes. **/
+sequence<byte> ByteSeq;
+
+/** A sequence of shorts. **/
+sequence<short> ShortSeq;
+
+/** A sequence of ints. **/
+sequence<int> IntSeq;
+
+/** A sequence of longs. **/
+sequence<long> LongSeq;
+
+/** A sequence of floats. **/
+sequence<float> FloatSeq;
+
+/** A sequence of doubles. **/
+sequence<double> DoubleSeq;
+
+/** A sequence of strings. **/
+sequence<string> StringSeq;
+
+};
+
+#endif