summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Trader/Trading_Loader.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-04-29 11:34:48 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-04-29 11:34:48 +0200
commitae4bd945a234a175b54dafb1cb54678b7cc67639 (patch)
tree20b02a85c31de92975667c3100b98af8719fc8f1 /TAO/orbsvcs/orbsvcs/Trader/Trading_Loader.h
parente12779d807b00fdc1b69a224dd92ff58d5e20906 (diff)
downloadATCD-ae4bd945a234a175b54dafb1cb54678b7cc67639.tar.gz
Removed not used auto_ptr member, use delete instead of ACE_UNIMPLEMENTED_FUNC, layout changes, fixed typos in comments
* ACE/examples/ASX/UPIPE_Event_Server/Peer_Router.h: * ACE/netsvcs/lib/Log_Message_Receiver.h: * ACE/performance-tests/TCP/tcp_test.cpp: * TAO/orbsvcs/Trading_Service/README: * TAO/orbsvcs/Trading_Service/Trading_Server.cpp: * TAO/orbsvcs/Trading_Service/Trading_Service.cpp: * TAO/orbsvcs/Trading_Service/Trading_Service.h: * TAO/orbsvcs/orbsvcs/AV/AVStreams_i.h: * TAO/orbsvcs/orbsvcs/Trader/Constraint_Interpreter.cpp: * TAO/orbsvcs/orbsvcs/Trader/Constraint_Interpreter.h: * TAO/orbsvcs/orbsvcs/Trader/Constraint_Nodes.h: * TAO/orbsvcs/orbsvcs/Trader/Constraint_Visitors.h: * TAO/orbsvcs/orbsvcs/Trader/Offer_Database.h: * TAO/orbsvcs/orbsvcs/Trader/Trader.h: * TAO/orbsvcs/orbsvcs/Trader/Trader_Constraint_Visitors.h: * TAO/orbsvcs/orbsvcs/Trader/Trader_Interfaces.h: * TAO/orbsvcs/orbsvcs/Trader/Trader_T.h: * TAO/orbsvcs/orbsvcs/Trader/Trader_Utils.h: * TAO/orbsvcs/orbsvcs/Trader/Trading_Loader.cpp: * TAO/orbsvcs/orbsvcs/Trader/Trading_Loader.h: * TAO/orbsvcs/tests/Trading/Simple_Dynamic.h: * TAO/tao/RTCORBA/Network_Priority_Mapping_Manager.h: * TAO/tao/RTCORBA/Priority_Mapping_Manager.h: * TAO/tao/RTScheduling/RTScheduler_Manager.h:
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: