summaryrefslogtreecommitdiff
path: root/TAO/tests/POA/TIE/test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/POA/TIE/test_i.cpp')
-rw-r--r--TAO/tests/POA/TIE/test_i.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/tests/POA/TIE/test_i.cpp b/TAO/tests/POA/TIE/test_i.cpp
index 4e10342787f..2e4df217e53 100644
--- a/TAO/tests/POA/TIE/test_i.cpp
+++ b/TAO/tests/POA/TIE/test_i.cpp
@@ -19,13 +19,13 @@ Tie_i::Tie_i (CORBA::Long value)
}
// Destructor
-Tie_i::~Tie_i (void)
+Tie_i::~Tie_i ()
{
}
// Return this->value
CORBA::Long
-Tie_i::doit (void)
+Tie_i::doit ()
{
return this->value_;
}
@@ -40,14 +40,14 @@ A_i::A_i (CORBA::Long value,
// Return this->value
CORBA::Long
-A_i::doit (void)
+A_i::doit ()
{
return this->value_;
}
// Return the Default POA of this Servant
PortableServer::POA_ptr
-A_i::_default_POA (void)
+A_i::_default_POA ()
{
return PortableServer::POA::_duplicate (this->poa_.in ());
}
@@ -62,14 +62,14 @@ Outer_i::B_i::B_i (CORBA::Long value,
// Return this->value
CORBA::Long
-Outer_i::B_i::doit (void)
+Outer_i::B_i::doit ()
{
return this->value_;
}
// Return the Default POA of this Servant
PortableServer::POA_ptr
-Outer_i::B_i::_default_POA (void)
+Outer_i::B_i::_default_POA ()
{
return PortableServer::POA::_duplicate (this->poa_.in ());
}
@@ -84,14 +84,14 @@ Outer_i::Inner_i::C_i::C_i (CORBA::Long value,
// Return this->value
CORBA::Long
-Outer_i::Inner_i::C_i::doit (void)
+Outer_i::Inner_i::C_i::doit ()
{
return this->value_;
}
// Return the Default POA of this Servant
PortableServer::POA_ptr
-Outer_i::Inner_i::C_i::_default_POA (void)
+Outer_i::Inner_i::C_i::_default_POA ()
{
return PortableServer::POA::_duplicate (this->poa_.in ());
}