summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/POA_Current_Impl.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-29 13:40:46 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-29 13:40:46 +0100
commit1fd4e430fee005d73f91cf4e2ce9c2ac8721d9b6 (patch)
treec0fb3bf13b84224c13fd26517a792a937639af66 /TAO/tao/PortableServer/POA_Current_Impl.cpp
parent4ce761b1d69d50c0c3658b1139370b44b9c626c8 (diff)
parentc6a620cc7eabece507d13986c40c955d2f226f26 (diff)
downloadATCD-1fd4e430fee005d73f91cf4e2ce9c2ac8721d9b6.tar.gz
Merge branch 'master' into diop-portspan
Diffstat (limited to 'TAO/tao/PortableServer/POA_Current_Impl.cpp')
-rw-r--r--TAO/tao/PortableServer/POA_Current_Impl.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/tao/PortableServer/POA_Current_Impl.cpp b/TAO/tao/PortableServer/POA_Current_Impl.cpp
index a3d4e509474..22c8c91e7a6 100644
--- a/TAO/tao/PortableServer/POA_Current_Impl.cpp
+++ b/TAO/tao/PortableServer/POA_Current_Impl.cpp
@@ -15,7 +15,7 @@ namespace TAO
{
namespace Portable_Server
{
- POA_Current_Impl::POA_Current_Impl (void)
+ POA_Current_Impl::POA_Current_Impl ()
: poa_ (0),
object_id_ (TAO_POA_OBJECT_ID_BUF_SIZE, 0, object_id_buf_),
object_key_ (0),
@@ -46,13 +46,13 @@ namespace TAO
}
POA_Current_Impl *
- POA_Current_Impl::previous (void) const
+ POA_Current_Impl::previous () const
{
return this->previous_current_impl_;
}
void
- POA_Current_Impl::teardown (void)
+ POA_Current_Impl::teardown ()
{
if (this->setup_done_)
{
@@ -62,13 +62,13 @@ namespace TAO
}
PortableServer::POA_ptr
- POA_Current_Impl::get_POA (void)
+ POA_Current_Impl::get_POA ()
{
return PortableServer::POA::_duplicate (this->poa_);
}
PortableServer::ObjectId *
- POA_Current_Impl::get_object_id (void)
+ POA_Current_Impl::get_object_id ()
{
PortableServer::ObjectId *objid = 0;
@@ -80,19 +80,19 @@ namespace TAO
}
CORBA::Object_ptr
- POA_Current_Impl::get_reference (void)
+ POA_Current_Impl::get_reference ()
{
return this->poa_->id_to_reference (this->object_id_);
}
PortableServer::Servant
- POA_Current_Impl::get_servant (void)
+ POA_Current_Impl::get_servant ()
{
return this->servant_;
}
TAO_ORB_Core &
- POA_Current_Impl::orb_core (void) const
+ POA_Current_Impl::orb_core () const
{
return this->poa_->orb_core ();