summaryrefslogtreecommitdiff
path: root/cpp/include/Ice/Config.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/include/Ice/Config.h')
-rw-r--r--cpp/include/Ice/Config.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/include/Ice/Config.h b/cpp/include/Ice/Config.h
index b46b7f785e9..11dba1dce38 100644
--- a/cpp/include/Ice/Config.h
+++ b/cpp/include/Ice/Config.h
@@ -49,15 +49,22 @@ namespace IceInternal
namespace Ice
{
+/** The mapping for the Slice byte type. */
typedef unsigned char Byte;
+/** The mapping for the Slice short type. */
typedef short Short;
+/** The mapping for the Slice int type. */
typedef int Int;
#ifdef ICE_CPP11_MAPPING
+/** The mapping for the Slice long type. */
typedef long long int Long;
#else
+/** The mapping for the Slice long type. */
typedef IceUtil::Int64 Long;
#endif
+/** The mapping for the Slice float type. */
typedef float Float;
+/** The mapping for the Slice double type. */
typedef double Double;
}