summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Trader/Trading_Loader.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Trader/Trading_Loader.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/Trader/Trading_Loader.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Trader/Trading_Loader.h b/TAO/orbsvcs/orbsvcs/Trader/Trading_Loader.h
index a3a5c9c7ca1..e4c1b22a08b 100644
--- a/TAO/orbsvcs/orbsvcs/Trader/Trading_Loader.h
+++ b/TAO/orbsvcs/orbsvcs/Trader/Trading_Loader.h
@@ -33,10 +33,10 @@ class TAO_Trading_Serv_Export TAO_Trading_Loader : public TAO_Object_Loader
{
public:
/// Constructor
- TAO_Trading_Loader (void);
+ TAO_Trading_Loader ();
/// Destructor
- ~TAO_Trading_Loader (void);
+ ~TAO_Trading_Loader () = default;
/// Called by the Service Configurator framework to initialize the
/// Event Service. Defined in <ace/Service_Config.h>
@@ -47,7 +47,7 @@ public:
virtual int fini ();
/// Run the Trading Service
- int run (void);
+ int run ();
/// This function call initializes the Trading Service given a reference to the
/// ORB and the command line parameters.
@@ -58,10 +58,10 @@ public:
protected:
/// Enable the Trading Service to answer multicast requests for its
/// IOR.
- int init_multicast_server (void);
+ int init_multicast_server ();
/// Bootstrap to another trader, and attach to its trader network.
- int bootstrap_to_federation (void);
+ int bootstrap_to_federation ();
/// Parses the command line arguments
int parse_args (int &argc, ACE_TCHAR *argv []);
@@ -91,7 +91,7 @@ protected:
/// requests.
TAO_IOR_Multicast ior_multicast_;
- /// Flag inidicating whether we're the trader others are bootstrapping to.
+ /// Flag indicating whether we're the trader others are bootstrapping to.
CORBA::Boolean bootstrapper_;
private: