#include <algorithm>

Go to the source code of this file.
Functions | |
| template<class X , class Y > | |
| bool | operator== (typename PortableServer::Servant_var< X > const &x, typename PortableServer::Servant_var< Y > const &y) |
| template<class X , class Y > | |
| bool | operator!= (typename PortableServer::Servant_var< X > const &x, typename PortableServer::Servant_var< Y > const &y) |
| bool operator!= | ( | typename PortableServer::Servant_var< X > const & | x, | |
| typename PortableServer::Servant_var< Y > const & | y | |||
| ) |
Definition at line 171 of file Servant_var.inl.
{
return x.in () != y.in ();
}
| bool operator== | ( | typename PortableServer::Servant_var< X > const & | x, | |
| typename PortableServer::Servant_var< Y > const & | y | |||
| ) |
Definition at line 163 of file Servant_var.inl.
{
return x.in () == y.in ();
}
1.7.0