summaryrefslogtreecommitdiff
path: root/protocols/ace/RMCast/Stack.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/ace/RMCast/Stack.cpp')
-rw-r--r--protocols/ace/RMCast/Stack.cpp73
1 files changed, 0 insertions, 73 deletions
diff --git a/protocols/ace/RMCast/Stack.cpp b/protocols/ace/RMCast/Stack.cpp
deleted file mode 100644
index aa62558b4c9..00000000000
--- a/protocols/ace/RMCast/Stack.cpp
+++ /dev/null
@@ -1,73 +0,0 @@
-// file : ace/RMCast/Stack.cpp
-// author : Boris Kolpackov <boris@kolpackov.net>
-// cvs-id : $Id$
-
-#include "Stack.h"
-
-namespace ACE_RMCast
-{
- // Out_Element
- //
-
- Out_Element::
- ~Out_Element ()
- {
- }
-
- Out_Element::
- Out_Element ()
- : out_ (0)
- {
- }
-
- void Out_Element::
- out_start (Out_Element* out)
- {
- out_ = out;
- }
-
- void Out_Element::
- send (Message_ptr m)
- {
- if (out_) out_->send (m);
- }
-
- void Out_Element::
- out_stop ()
- {
- out_ = 0;
- }
-
-
- // In_Element
- //
-
- In_Element::
- ~In_Element ()
- {
- }
-
- In_Element::
- In_Element ()
- : in_ (0)
- {
- }
-
- void In_Element::
- in_start (In_Element* in)
- {
- in_ = in;
- }
-
- void In_Element::
- recv (Message_ptr m)
- {
- if (in_) in_->recv (m);
- }
-
- void In_Element::
- in_stop ()
- {
- in_ = 0;
- }
-}