summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3683_Regression/Simple_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_3683_Regression/Simple_util.h')
-rw-r--r--TAO/tests/Bug_3683_Regression/Simple_util.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/TAO/tests/Bug_3683_Regression/Simple_util.h b/TAO/tests/Bug_3683_Regression/Simple_util.h
index 1dc1e1c70dc..244b5b66170 100644
--- a/TAO/tests/Bug_3683_Regression/Simple_util.h
+++ b/TAO/tests/Bug_3683_Regression/Simple_util.h
@@ -34,10 +34,10 @@ class Server
{
public:
/// Constructor.
- Server (void);
+ Server ();
/// Destructor.
- ~Server (void);
+ ~Server ();
/// Initialize the Server state - parsing arguments and waiting.
/// interface_name is the name used to register the Servant.
@@ -46,7 +46,7 @@ public:
ACE_TCHAR *argv[]);
/// Run the orb.
- int run (void);
+ int run ();
/// Ignore this method if you are not testing the InterOperable
/// Naming Service.
@@ -54,7 +54,7 @@ public:
private:
/// Parses the commandline arguments.
- int parse_args (void);
+ int parse_args ();
/// A holder of the servant that does ref counting for him.
typedef TAO_Intrusive_Ref_Count_Handle<Servant> Servant_var;
@@ -94,10 +94,10 @@ class Client
{
public:
/// Constructor.
- Client (void);
+ Client ();
/// Destructor.
- ~Client (void);
+ ~Client ();
/// Initialize the client communication endpoint with server.
int init (const char *name, int argc, ACE_TCHAR *argv[]);
@@ -106,7 +106,7 @@ public:
ServerInterface *operator-> () { return server_.in (); }
/// Returns the shutdown flag.
- int do_shutdown (void);
+ int do_shutdown ();
/// Fills in the shutdwon flag.
void do_shutdown (int);
@@ -114,7 +114,7 @@ public:
/// Initialize naming service
int obtain_initial_references (const char *name);
- CORBA::ORB_ptr orb (void)
+ CORBA::ORB_ptr orb ()
{
return CORBA::ORB::_duplicate (this->orb_.in ());
}
@@ -124,7 +124,7 @@ private:
int read_ior (ACE_TCHAR *filename);
/// Parses the arguments passed on the command line.
- int parse_args (void);
+ int parse_args ();
/// Remember our orb.
CORBA::ORB_var orb_;