summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/examples/LoadBalancing/ServerRequestInterceptor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/examples/LoadBalancing/ServerRequestInterceptor.cpp')
-rw-r--r--TAO/orbsvcs/examples/LoadBalancing/ServerRequestInterceptor.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/orbsvcs/examples/LoadBalancing/ServerRequestInterceptor.cpp b/TAO/orbsvcs/examples/LoadBalancing/ServerRequestInterceptor.cpp
index 2af202455c5..05012b1fb74 100644
--- a/TAO/orbsvcs/examples/LoadBalancing/ServerRequestInterceptor.cpp
+++ b/TAO/orbsvcs/examples/LoadBalancing/ServerRequestInterceptor.cpp
@@ -1,22 +1,22 @@
#include "ServerRequestInterceptor.h"
-ServerRequestInterceptor::ServerRequestInterceptor (void)
+ServerRequestInterceptor::ServerRequestInterceptor ()
: request_count_ (0)
{
}
-ServerRequestInterceptor::~ServerRequestInterceptor (void)
+ServerRequestInterceptor::~ServerRequestInterceptor ()
{
}
char *
-ServerRequestInterceptor::name (void)
+ServerRequestInterceptor::name ()
{
return CORBA::string_dup ("ServerRequestInterceptor");
}
void
-ServerRequestInterceptor::destroy (void)
+ServerRequestInterceptor::destroy ()
{
}
@@ -52,7 +52,7 @@ ServerRequestInterceptor::send_other (
}
CORBA::Long
-ServerRequestInterceptor::request_count (void)
+ServerRequestInterceptor::request_count ()
{
const CORBA::Long r = this->request_count_.value ();
this->request_count_ = 0;