summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/Benchmark/server_interceptors.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Portable_Interceptors/Benchmark/server_interceptors.cpp')
-rw-r--r--TAO/tests/Portable_Interceptors/Benchmark/server_interceptors.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/tests/Portable_Interceptors/Benchmark/server_interceptors.cpp b/TAO/tests/Portable_Interceptors/Benchmark/server_interceptors.cpp
index eaf668deda6..ca63b652bc1 100644
--- a/TAO/tests/Portable_Interceptors/Benchmark/server_interceptors.cpp
+++ b/TAO/tests/Portable_Interceptors/Benchmark/server_interceptors.cpp
@@ -8,7 +8,7 @@
const CORBA::ULong request_ctx_id = 0xdead;
//const CORBA::ULong reply_ctx_id = 0xbeef; // Never used.
-Vault_Server_Request_Interceptor::Vault_Server_Request_Interceptor (void)
+Vault_Server_Request_Interceptor::Vault_Server_Request_Interceptor ()
: myname_ ("Vault_Server_Interceptor")
{
}
@@ -18,13 +18,13 @@ Vault_Server_Request_Interceptor::~Vault_Server_Request_Interceptor ()
}
char *
-Vault_Server_Request_Interceptor::name (void)
+Vault_Server_Request_Interceptor::name ()
{
return CORBA::string_dup (this->myname_);
}
void
-Vault_Server_Request_Interceptor::destroy (void)
+Vault_Server_Request_Interceptor::destroy ()
{
}
@@ -100,7 +100,7 @@ Vault_Server_Request_Interceptor::send_other (
////////////////////////////////// Context /////////////////////////
-Vault_Server_Request_Context_Interceptor::Vault_Server_Request_Context_Interceptor (void)
+Vault_Server_Request_Context_Interceptor::Vault_Server_Request_Context_Interceptor ()
: myname_ ("Vault_Server_Context_Interceptor")
{
}
@@ -162,7 +162,7 @@ Vault_Server_Request_Context_Interceptor::send_other (
///////////////////////////////////Dynamic ////////////////////////////////////
-Vault_Server_Request_Dynamic_Interceptor::Vault_Server_Request_Dynamic_Interceptor (void)
+Vault_Server_Request_Dynamic_Interceptor::Vault_Server_Request_Dynamic_Interceptor ()
: myname_ ("Vault_Server_Dynamic_Interceptor")
{
}
@@ -258,7 +258,7 @@ Vault_Server_Request_Dynamic_Interceptor::send_other (
//////////////////////////////NOOP///////////////////////////////////////
-Vault_Server_Request_NOOP_Interceptor::Vault_Server_Request_NOOP_Interceptor (void)
+Vault_Server_Request_NOOP_Interceptor::Vault_Server_Request_NOOP_Interceptor ()
: myname_ ("Vault_Server_NOOP_Interceptor")
{
}
@@ -268,7 +268,7 @@ Vault_Server_Request_NOOP_Interceptor::~Vault_Server_Request_NOOP_Interceptor ()
}
char *
-Vault_Server_Request_NOOP_Interceptor::name (void)
+Vault_Server_Request_NOOP_Interceptor::name ()
{
return CORBA::string_dup (this->myname_);
}