summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Service.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/Logging_Service/Notify_Logging_Service/Notify_Logging_Service.h
parentfe03724176dcfd20e0f9a6e493198469242be6b6 (diff)
downloadATCD-3da59eac098c1ef9d2c98f2079185ff35c3b6105.tar.gz
Remove obsolescent (void) in functions with no parameters
Diffstat (limited to 'TAO/orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Service.h')
-rw-r--r--TAO/orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Service.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Service.h b/TAO/orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Service.h
index ae5dfaecfee..edcf537a82b 100644
--- a/TAO/orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Service.h
+++ b/TAO/orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Service.h
@@ -34,21 +34,21 @@ class Notify_Logging_Service
// Implementation of the Telecom Log Service
public:
- Notify_Logging_Service (void);
+ Notify_Logging_Service ();
// Constructor.
- virtual ~Notify_Logging_Service (void);
+ virtual ~Notify_Logging_Service ();
// Destructor.
int init (int argc, ACE_TCHAR *argv[]);
// Initializes the Telecom Log Service.
// Returns 0 on success, -1 on error.
- int run (void);
+ int run ();
// Run the Telecom Log Service.
// Returns 0 on success, -1 on error.
- void shutdown (void);
+ void shutdown ();
// Shutdown the Telecom Service.
// Returns 0 on success, -1 on error.
@@ -59,7 +59,7 @@ protected:
int parse_args (int argc, ACE_TCHAR *argv[]);
// Parses the command line arguments.
- void resolve_naming_service (void);
+ void resolve_naming_service ();
// Resolve the naming service.
int svc ();