summaryrefslogtreecommitdiff
path: root/protocols/ace/RMCast/RMCast_Module.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/ace/RMCast/RMCast_Module.cpp')
-rw-r--r--protocols/ace/RMCast/RMCast_Module.cpp57
1 files changed, 57 insertions, 0 deletions
diff --git a/protocols/ace/RMCast/RMCast_Module.cpp b/protocols/ace/RMCast/RMCast_Module.cpp
new file mode 100644
index 00000000000..b47694abe4d
--- /dev/null
+++ b/protocols/ace/RMCast/RMCast_Module.cpp
@@ -0,0 +1,57 @@
+//
+// $Id$
+//
+
+#include "RMCast_Module.h"
+
+#if !defined (__ACE_INLINE__)
+# include "RMCast_Module.i"
+#endif /* ! __ACE_INLINE__ */
+
+ACE_RCSID(ace, RMCast_Module, "$Id$")
+
+ACE_RMCast_Module::~ACE_RMCast_Module (void)
+{
+}
+
+int
+ACE_RMCast_Module::next (ACE_RMCast_Module *next)
+{
+ if (this->next_ != 0 && next != 0)
+ return 1;
+ this->next_ = next;
+ return 0;
+}
+
+ACE_RMCast_Module *
+ACE_RMCast_Module::next (void) const
+{
+ return this->next_;
+}
+
+int
+ACE_RMCast_Module::prev (ACE_RMCast_Module *prev)
+{
+ if (this->prev_ != 0 && prev != 0)
+ return 1;
+ this->prev_ = prev;
+ return 0;
+}
+
+ACE_RMCast_Module *
+ACE_RMCast_Module::prev (void) const
+{
+ return this->prev_;
+}
+
+int
+ACE_RMCast_Module::open (void)
+{
+ return 0;
+}
+
+int
+ACE_RMCast_Module::close (void)
+{
+ return 0;
+}