summaryrefslogtreecommitdiff
path: root/TAO/tests/NestedUpcall/MT_Client_Test/server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/NestedUpcall/MT_Client_Test/server.cpp')
-rw-r--r--TAO/tests/NestedUpcall/MT_Client_Test/server.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tests/NestedUpcall/MT_Client_Test/server.cpp b/TAO/tests/NestedUpcall/MT_Client_Test/server.cpp
index 8c4ce3fcc17..9609b0bf950 100644
--- a/TAO/tests/NestedUpcall/MT_Client_Test/server.cpp
+++ b/TAO/tests/NestedUpcall/MT_Client_Test/server.cpp
@@ -32,7 +32,7 @@ public:
#endif
}
- ~TestShutdown (void)
+ ~TestShutdown ()
{
#if !defined(ACE_LACKS_UNIX_SIGNALS)
this->shutdown_.remove_handler (SIGTERM);
@@ -54,13 +54,13 @@ private:
ACE_Sig_Handler shutdown_;
};
-MT_Object_Server::MT_Object_Server (void)
+MT_Object_Server::MT_Object_Server ()
: ior_output_file_ (0)
{
}
int
-MT_Object_Server::parse_args (void)
+MT_Object_Server::parse_args ()
{
ACE_Get_Opt get_opts (argc_, argv_, ACE_TEXT("do:m"));
int c;
@@ -132,7 +132,7 @@ MT_Object_Server::init (int argc, ACE_TCHAR** argv)
int
-MT_Object_Server::run (void)
+MT_Object_Server::run ()
{
CORBA::ORB_var orb = this->orb_manager_.orb ();
TestShutdown killer (orb.in ());
@@ -146,7 +146,7 @@ MT_Object_Server::run (void)
return 0;
}
-MT_Object_Server::~MT_Object_Server (void)
+MT_Object_Server::~MT_Object_Server ()
{
}