summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ReplyStatus.h
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2007-05-17 01:02:32 +0000
committerBernard Normier <bernard@zeroc.com>2007-05-17 01:02:32 +0000
commit4223dcb5e90d48657902da8a94ad177b83bd7dfe (patch)
treebb78fd81e896228e3743c4d90b8636f799b0a182 /cpp/src/Ice/ReplyStatus.h
parentadded interceptor test (diff)
downloadice-4223dcb5e90d48657902da8a94ad177b83bd7dfe.tar.bz2
ice-4223dcb5e90d48657902da8a94ad177b83bd7dfe.tar.xz
ice-4223dcb5e90d48657902da8a94ad177b83bd7dfe.zip
Split DispatchStatus into dispatch status and reply status (bug #2150)
Diffstat (limited to 'cpp/src/Ice/ReplyStatus.h')
-rw-r--r--cpp/src/Ice/ReplyStatus.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/cpp/src/Ice/ReplyStatus.h b/cpp/src/Ice/ReplyStatus.h
new file mode 100644
index 00000000000..8a091f43279
--- /dev/null
+++ b/cpp/src/Ice/ReplyStatus.h
@@ -0,0 +1,29 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2007 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.
+//
+// **********************************************************************
+
+#ifndef ICE_REQUEST_STATUS_H
+#define ICE_REQUEST_STATUS_H
+
+#include <Ice/Config.h>
+
+namespace IceInternal
+{
+
+static const Ice::Byte replyOK = 0;
+static const Ice::Byte replyUserException = 1;
+static const Ice::Byte replyObjectNotExist = 2;
+static const Ice::Byte replyFacetNotExist = 3;
+static const Ice::Byte replyOperationNotExist = 4;
+static const Ice::Byte replyUnknownLocalException = 5;
+static const Ice::Byte replyUnknownUserException = 6;
+static const Ice::Byte replyUnknownException = 7;
+
+}
+
+#endif