Merge pull request #2216 from jwillemsen/jwi-cxxversionchecks
[ACE_TAO.git] / TAO / tao / Endpoint.cpp
blobdee4c8616f0928e24f7bf6d48bdccb9e5e29fe82
1 #include "tao/Endpoint.h"
2 #include "tao/ORB_Core.h"
4 #if !defined (__ACE_INLINE__)
5 #include "tao/Endpoint.inl"
6 #endif /* __ACE_INLINE__ */
8 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
10 TAO_Endpoint *
11 TAO_Endpoint::next_filtered (TAO_ORB_Core *, TAO_Endpoint *root)
13 if (root == nullptr)
14 return this;
15 return this->next();
18 TAO_END_VERSIONED_NAMESPACE_DECL