summaryrefslogtreecommitdiff
path: root/TAO/tao/Endpoint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Endpoint.cpp')
-rw-r--r--TAO/tao/Endpoint.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/TAO/tao/Endpoint.cpp b/TAO/tao/Endpoint.cpp
new file mode 100644
index 00000000000..b751c6fcdb0
--- /dev/null
+++ b/TAO/tao/Endpoint.cpp
@@ -0,0 +1,30 @@
+// $Id$
+
+#include "tao/Endpoint.h"
+#include "tao/ORB_Core.h"
+
+#if !defined (__ACE_INLINE__)
+#include "tao/Endpoint.inl"
+#endif /* __ACE_INLINE__ */
+
+ACE_RCSID (tao,
+ Endpoint,
+ "$Id$")
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+TAO_Endpoint::~TAO_Endpoint (void)
+{
+}
+
+TAO_Endpoint *
+TAO_Endpoint::next_filtered (TAO_ORB_Core *, TAO_Endpoint *root)
+{
+ if (root == 0)
+ return this;
+ return this->next();
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+//@@ TAO_ENDPOINT_SPL_METHODS_ADD_HOOK