summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/Time_Service/Server_i.h
diff options
context:
space:
mode:
authorKnut Petter Svendsen <knut@altuma.no>2022-09-13 22:57:39 +0200
committerKnut Petter Svendsen <knut@altuma.no>2022-09-13 22:57:39 +0200
commit3da59eac098c1ef9d2c98f2079185ff35c3b6105 (patch)
tree379c29e09bf55597fe6740cd163478cd1204a181 /TAO/orbsvcs/Time_Service/Server_i.h
parentfe03724176dcfd20e0f9a6e493198469242be6b6 (diff)
downloadATCD-3da59eac098c1ef9d2c98f2079185ff35c3b6105.tar.gz
Remove obsolescent (void) in functions with no parameters
Diffstat (limited to 'TAO/orbsvcs/Time_Service/Server_i.h')
-rw-r--r--TAO/orbsvcs/Time_Service/Server_i.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/orbsvcs/Time_Service/Server_i.h b/TAO/orbsvcs/Time_Service/Server_i.h
index 1ceb27508ca..5a967d63148 100644
--- a/TAO/orbsvcs/Time_Service/Server_i.h
+++ b/TAO/orbsvcs/Time_Service/Server_i.h
@@ -31,26 +31,26 @@ class Server_i
{
public:
/// Constructor.
- Server_i (void);
+ Server_i ();
/// Destructor.
- ~Server_i (void);
+ ~Server_i ();
/// Initialize the Server state.
int init (int argc,
ACE_TCHAR *argv[]);
/// Run the orb.
- int run (void);
+ int run ();
/// Initialises the name client.
int init_naming_service ();
/// Create the time server object.
- int create_server (void);
+ int create_server ();
/// Register the time server object with the Naming Service.
- int register_server (void);
+ int register_server ();
/// Parse the commandline arguments.
int parse_args (int argc,