summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2002-01-23 16:44:18 +0000
committerMatthew Newhook <matthew@zeroc.com>2002-01-23 16:44:18 +0000
commitc795caecb4d99c0f370e05bd076fbe0a897f0903 (patch)
tree3af8762a10dc10660ed3a77fe03076a424b59c7c /cpp
parentadded missing files. Renamed XMLStream to StreamI. Renamed XMLOutput to (diff)
downloadice-c795caecb4d99c0f370e05bd076fbe0a897f0903.tar.bz2
ice-c795caecb4d99c0f370e05bd076fbe0a897f0903.tar.xz
ice-c795caecb4d99c0f370e05bd076fbe0a897f0903.zip
Added file.
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