summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/Collocated/Dynamic/interceptors.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Portable_Interceptors/Collocated/Dynamic/interceptors.h')
-rw-r--r--TAO/tests/Portable_Interceptors/Collocated/Dynamic/interceptors.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/tests/Portable_Interceptors/Collocated/Dynamic/interceptors.h b/TAO/tests/Portable_Interceptors/Collocated/Dynamic/interceptors.h
index 84d7fffcbd4..48808b448be 100644
--- a/TAO/tests/Portable_Interceptors/Collocated/Dynamic/interceptors.h
+++ b/TAO/tests/Portable_Interceptors/Collocated/Dynamic/interceptors.h
@@ -24,15 +24,15 @@ class Echo_Client_Request_Interceptor
{
// = Client-side echo interceptor. For checking interceptor visually only.
public:
- Echo_Client_Request_Interceptor (void);
+ Echo_Client_Request_Interceptor ();
// ctor.
virtual ~Echo_Client_Request_Interceptor ();
// dtor.
- virtual char * name (void);
+ virtual char * name ();
// Canonical name of the interceptor.
- virtual void destroy (void);
+ virtual void destroy ();
virtual void send_poll (
PortableInterceptor::ClientRequestInfo_ptr);
@@ -59,15 +59,15 @@ class Echo_Server_Request_Interceptor
{
// = Server-side echo interceptor. For checking interceptor visually only.
public:
- Echo_Server_Request_Interceptor (void);
+ Echo_Server_Request_Interceptor ();
// cotr.
~Echo_Server_Request_Interceptor ();
// dotr.
- virtual char * name (void);
+ virtual char * name ();
// Canonical name of the interceptor.
- virtual void destroy (void);
+ virtual void destroy ();
virtual void receive_request_service_contexts (
PortableInterceptor::ServerRequestInfo_ptr);