summaryrefslogtreecommitdiff
path: root/TAO/tao/Reply_Dispatcher.cpp
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-02 02:29:10 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-02 02:29:10 +0000
commit24abdec6da1f952e8e9c1f0e9427fef6d5566dab (patch)
tree7a4be4edf3c98e54e0bc2d003a1e4303e2367027 /TAO/tao/Reply_Dispatcher.cpp
parent27f36e2bb4afdb3329725c90871b823633b3dce0 (diff)
downloadATCD-24abdec6da1f952e8e9c1f0e9427fef6d5566dab.tar.gz
ChangeLogTag:Tue Jun 1 19:48:12 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/Reply_Dispatcher.cpp')
-rw-r--r--TAO/tao/Reply_Dispatcher.cpp74
1 files changed, 74 insertions, 0 deletions
diff --git a/TAO/tao/Reply_Dispatcher.cpp b/TAO/tao/Reply_Dispatcher.cpp
new file mode 100644
index 00000000000..a6249ef9c36
--- /dev/null
+++ b/TAO/tao/Reply_Dispatcher.cpp
@@ -0,0 +1,74 @@
+// $Id$
+
+#include "tao/Reply_Dispatcher.h"
+
+// Constructor.
+TAO_Reply_Dispatcher::TAO_Reply_Dispatcher (void)
+ : request_id_ (0),
+ cdr_ (0)
+{
+}
+
+// Destructor.
+TAO_Reply_Dispatcher::~TAO_Reply_Dispatcher (void)
+{
+}
+
+void
+TAO_Reply_Dispatcher::request_id (CORBA::ULong request_id)
+{
+ this->request_id_ = request_id;
+}
+
+CORBA::ULong
+TAO_Reply_Dispatcher::request_id (void) const
+{
+ return this->request_id_;
+}
+
+void
+TAO_Reply_Dispatcher::reply_status (CORBA::ULong reply_status)
+{
+ this->reply_status_ = reply_status;
+}
+
+// Get the reply status.
+CORBA::ULong
+TAO_Reply_Dispatcher::reply_status (void) const
+{
+ return this->reply_status_;
+}
+
+// Set the CDR which the has the reply message.
+void
+TAO_Reply_Dispatcher::cdr (TAO_InputCDR *cdr)
+{
+ this->cdr_ = cdr;
+}
+
+// Get the CDR stream.
+TAO_InputCDR *
+TAO_Reply_Dispatcher::cdr (void) const
+{
+ return this->cdr_;
+}
+
+// *********************************************************************
+
+// Constructor.
+TAO_Synch_Reply_Dispatcher::TAO_Synch_Reply_Dispatcher (void)
+{
+}
+
+// Destructor.
+TAO_Synch_Reply_Dispatcher::~TAO_Synch_Reply_Dispatcher (void)
+{
+}
+
+// Dispatch the reply.
+int
+TAO_Synch_Reply_Dispatcher::dispatch_reply (void)
+{
+ // @@ Handover the input CDR to the Invocation class.
+ return 0;
+}