summaryrefslogtreecommitdiff
path: root/TAO/tao/Endpoint.cpp
blob: dee4c8616f0928e24f7bf6d48bdccb9e5e29fe82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "tao/Endpoint.h"
#include "tao/ORB_Core.h"

#if !defined (__ACE_INLINE__)
#include "tao/Endpoint.inl"
#endif /* __ACE_INLINE__ */

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

TAO_Endpoint *
TAO_Endpoint::next_filtered (TAO_ORB_Core *, TAO_Endpoint *root)
{
  if (root == nullptr)
    return this;
  return this->next();
}

TAO_END_VERSIONED_NAMESPACE_DECL