summaryrefslogtreecommitdiff
path: root/TAO/examples
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2019-08-19 17:25:34 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2019-08-19 17:25:34 +0200
commit814e79122b919520b7a337408d8b66f9f30d38bf (patch)
treecf37f5963d866610d7c46dc9b86636cfa3fb67e1 /TAO/examples
parent0acedb74f7bec47143ca8bcf542c8ae3cea15edb (diff)
downloadATCD-814e79122b919520b7a337408d8b66f9f30d38bf.tar.gz
Removed old comments before constructor/destructor
Diffstat (limited to 'TAO/examples')
-rw-r--r--TAO/examples/Borland/ORBThread.h5
-rw-r--r--TAO/examples/Borland/ReceiverImpl.h5
-rw-r--r--TAO/examples/Callback_Quoter/Consumer_Handler.h2
-rw-r--r--TAO/examples/Callback_Quoter/Consumer_i.h1
-rw-r--r--TAO/examples/Callback_Quoter/Notifier_Input_Handler.h1
-rw-r--r--TAO/examples/Callback_Quoter/Notifier_i.h1
-rw-r--r--TAO/examples/Callback_Quoter/Supplier_i.h1
-rw-r--r--TAO/examples/Event_Comm/Consumer_Handler.h1
-rw-r--r--TAO/examples/Event_Comm/Event_Comm_i.cpp1
-rw-r--r--TAO/examples/Event_Comm/Event_Comm_i.h1
-rw-r--r--TAO/examples/Event_Comm/Notifier_Handler.h1
-rw-r--r--TAO/examples/Event_Comm/Notifier_Server.h1
-rw-r--r--TAO/examples/Event_Comm/Supplier_Input_Handler.h1
-rw-r--r--TAO/examples/Event_Comm/consumer.cpp1
-rw-r--r--TAO/examples/Event_Comm/notifier.h5
-rw-r--r--TAO/examples/Load_Balancing/Load_Balancer_i.h6
-rw-r--r--TAO/examples/Load_Balancing_persistent/Load_Balancer_i.h6
-rw-r--r--TAO/examples/Logging/Logging_Service_i.h1
-rw-r--r--TAO/examples/Logging/Logging_Test_i.h2
-rw-r--r--TAO/examples/OBV/Simple_util.h4
-rw-r--r--TAO/examples/OBV/Typed_Events/Client_i.h1
-rw-r--r--TAO/examples/OBV/Typed_Events/Server_i.h1
-rw-r--r--TAO/examples/Persistent_Grid/Grid_Client_i.h1
-rw-r--r--TAO/examples/Persistent_Grid/Grid_i.h3
-rw-r--r--TAO/examples/Persistent_Grid/Persistent_Client.h1
-rw-r--r--TAO/examples/Persistent_Grid/Simple_util.h4
-rw-r--r--TAO/examples/PluggableUDP/tests/Performance/UDP_PerformanceClient.h1
-rw-r--r--TAO/examples/PluggableUDP/tests/Performance/UDP_i.h1
-rw-r--r--TAO/examples/Simple/Simple_util.h4
-rw-r--r--TAO/examples/Simple/bank/AccountManager_i.h1
-rw-r--r--TAO/examples/Simple/bank/Account_i.h1
-rw-r--r--TAO/examples/Simple/bank/Bank_Client_i.h1
-rw-r--r--TAO/examples/Simple/chat/Broadcaster_i.h1
-rw-r--r--TAO/examples/Simple/chat/Client_i.h1
-rw-r--r--TAO/examples/Simple/chat/Receiver_i.h1
-rw-r--r--TAO/examples/Simple/chat/Server_i.h1
-rw-r--r--TAO/examples/Simple/echo/Echo_Client_i.h1
-rw-r--r--TAO/examples/Simple/echo/Echo_i.h1
-rw-r--r--TAO/examples/Simple/grid/Grid_Client_i.h1
-rw-r--r--TAO/examples/Simple/grid/Grid_i.h3
-rw-r--r--TAO/examples/Simple/time-date/Time_Date_Client_i.h1
-rw-r--r--TAO/examples/Simple/time-date/Time_Date_i.h2
-rw-r--r--TAO/examples/Simple/time/Time_Client_i.h1
-rw-r--r--TAO/examples/Simple/time/Time_i.h1
44 files changed, 4 insertions, 78 deletions
diff --git a/TAO/examples/Borland/ORBThread.h b/TAO/examples/Borland/ORBThread.h
index b8174e44a48..293423c7004 100644
--- a/TAO/examples/Borland/ORBThread.h
+++ b/TAO/examples/Borland/ORBThread.h
@@ -8,12 +8,11 @@ class PACKAGE TORBThread : public TThread
{
// Class for running the orb in a separate thread.
public:
- // = Initialization and termination methods.
- __fastcall TORBThread (CORBA::ORB_ptr orb);
// Constructor.
+ __fastcall TORBThread (CORBA::ORB_ptr orb);
- __fastcall ~TORBThread ();
// Destructor.
+ __fastcall ~TORBThread ();
protected:
void __fastcall Execute ();
diff --git a/TAO/examples/Borland/ReceiverImpl.h b/TAO/examples/Borland/ReceiverImpl.h
index b4ce57cd8f8..55a2b9b462b 100644
--- a/TAO/examples/Borland/ReceiverImpl.h
+++ b/TAO/examples/Borland/ReceiverImpl.h
@@ -7,12 +7,11 @@
class TReceiverImplementation : public POA_Receiver
{
public:
- // = Initialization and termination methods.
- TReceiverImplementation (void);
// Constructor.
+ TReceiverImplementation (void);
- ~TReceiverImplementation (void);
// Destructor.
+ ~TReceiverImplementation (void);
virtual void message (const char* msg);
diff --git a/TAO/examples/Callback_Quoter/Consumer_Handler.h b/TAO/examples/Callback_Quoter/Consumer_Handler.h
index cdd7fb2b222..c21f2fbbb44 100644
--- a/TAO/examples/Callback_Quoter/Consumer_Handler.h
+++ b/TAO/examples/Callback_Quoter/Consumer_Handler.h
@@ -43,9 +43,7 @@ class Consumer_Signal_Handler;
*/
class Consumer_Handler
{
-
public:
- // = Initialization and termination methods.
/// Constructor.
Consumer_Handler (void);
diff --git a/TAO/examples/Callback_Quoter/Consumer_i.h b/TAO/examples/Callback_Quoter/Consumer_i.h
index b26c6c8d9b6..23fa3e574e0 100644
--- a/TAO/examples/Callback_Quoter/Consumer_i.h
+++ b/TAO/examples/Callback_Quoter/Consumer_i.h
@@ -28,7 +28,6 @@
class Consumer_i : public POA_Callback_Quoter::Consumer
{
public:
- // = Initialization and termination methods.
/// Constructor.
Consumer_i (void);
diff --git a/TAO/examples/Callback_Quoter/Notifier_Input_Handler.h b/TAO/examples/Callback_Quoter/Notifier_Input_Handler.h
index f1ca12c921e..a19bbeabf5e 100644
--- a/TAO/examples/Callback_Quoter/Notifier_Input_Handler.h
+++ b/TAO/examples/Callback_Quoter/Notifier_Input_Handler.h
@@ -33,7 +33,6 @@
class Notifier_Input_Handler : public ACE_Event_Handler
{
public:
- // = Initialization and termination methods.
/// Constructor.
Notifier_Input_Handler (void);
diff --git a/TAO/examples/Callback_Quoter/Notifier_i.h b/TAO/examples/Callback_Quoter/Notifier_i.h
index 9a602f89885..23a283c28c7 100644
--- a/TAO/examples/Callback_Quoter/Notifier_i.h
+++ b/TAO/examples/Callback_Quoter/Notifier_i.h
@@ -37,7 +37,6 @@
class Notifier_i : public POA_Notifier
{
public:
- // = Initialization and termination methods.
/// Constructor.
Notifier_i (void);
diff --git a/TAO/examples/Callback_Quoter/Supplier_i.h b/TAO/examples/Callback_Quoter/Supplier_i.h
index 91573ebe732..123a323661b 100644
--- a/TAO/examples/Callback_Quoter/Supplier_i.h
+++ b/TAO/examples/Callback_Quoter/Supplier_i.h
@@ -36,7 +36,6 @@ class Supplier_Timer_Handler;
class Supplier
{
public:
- // = Initialization and termination methods.
/// Constructor.
Supplier (void);
diff --git a/TAO/examples/Event_Comm/Consumer_Handler.h b/TAO/examples/Event_Comm/Consumer_Handler.h
index 008d5b235ea..eaed47f1ffc 100644
--- a/TAO/examples/Event_Comm/Consumer_Handler.h
+++ b/TAO/examples/Event_Comm/Consumer_Handler.h
@@ -31,7 +31,6 @@
class Consumer_Handler
{
public:
- // = Initialization and termination methods.
/// Constructor.
Consumer_Handler (void);
diff --git a/TAO/examples/Event_Comm/Event_Comm_i.cpp b/TAO/examples/Event_Comm/Event_Comm_i.cpp
index 85b523498c8..1f251648a07 100644
--- a/TAO/examples/Event_Comm/Event_Comm_i.cpp
+++ b/TAO/examples/Event_Comm/Event_Comm_i.cpp
@@ -8,7 +8,6 @@
class Consumer_Entry
{
public:
- // = Initialization and termination methods.
Consumer_Entry (Event_Comm::Consumer *consumer,
const char *filtering_criteria);
// Constructor.
diff --git a/TAO/examples/Event_Comm/Event_Comm_i.h b/TAO/examples/Event_Comm/Event_Comm_i.h
index 82dde90d39e..14ae32a1fa5 100644
--- a/TAO/examples/Event_Comm/Event_Comm_i.h
+++ b/TAO/examples/Event_Comm/Event_Comm_i.h
@@ -50,7 +50,6 @@ public:
class Consumer_i : public POA_Event_Comm::Consumer
{
public:
- // = Initialization and termination methods.
/// Constructor.
Consumer_i (void);
diff --git a/TAO/examples/Event_Comm/Notifier_Handler.h b/TAO/examples/Event_Comm/Notifier_Handler.h
index 61dd0cd0ba3..d231084f1b3 100644
--- a/TAO/examples/Event_Comm/Notifier_Handler.h
+++ b/TAO/examples/Event_Comm/Notifier_Handler.h
@@ -30,7 +30,6 @@
class Notifier_Handler
{
public:
- // = Initialization and termination methods.
/// This constructor gets the notifier object from the Naming
/// Service.
Notifier_Handler (void);
diff --git a/TAO/examples/Event_Comm/Notifier_Server.h b/TAO/examples/Event_Comm/Notifier_Server.h
index 2b3a1c00b09..46822e33240 100644
--- a/TAO/examples/Event_Comm/Notifier_Server.h
+++ b/TAO/examples/Event_Comm/Notifier_Server.h
@@ -26,7 +26,6 @@
class Notifier_Server
{
public:
- // = Initialization and termination methods.
/// Constructor.
Notifier_Server (void);
diff --git a/TAO/examples/Event_Comm/Supplier_Input_Handler.h b/TAO/examples/Event_Comm/Supplier_Input_Handler.h
index 77dbd8bb38f..b18d79a4e75 100644
--- a/TAO/examples/Event_Comm/Supplier_Input_Handler.h
+++ b/TAO/examples/Event_Comm/Supplier_Input_Handler.h
@@ -35,7 +35,6 @@ class Notifier_Handler;
class Supplier_Input_Handler : public ACE_Event_Handler
{
public:
- // = Initialization and termination methods.
/// Constructor.
Supplier_Input_Handler (void);
diff --git a/TAO/examples/Event_Comm/consumer.cpp b/TAO/examples/Event_Comm/consumer.cpp
index 73088a48391..8eb2384e703 100644
--- a/TAO/examples/Event_Comm/consumer.cpp
+++ b/TAO/examples/Event_Comm/consumer.cpp
@@ -10,7 +10,6 @@
class Consumer : public ACE_Event_Handler, public ShutdownCallback
{
public:
- // = Initialization and termination methods.
Consumer (void);
// Constructor.
diff --git a/TAO/examples/Event_Comm/notifier.h b/TAO/examples/Event_Comm/notifier.h
index 2ff67c3643a..009cc015967 100644
--- a/TAO/examples/Event_Comm/notifier.h
+++ b/TAO/examples/Event_Comm/notifier.h
@@ -1,4 +1,3 @@
-
//=============================================================================
/**
* @file notifier.h
@@ -7,9 +6,6 @@
*/
//=============================================================================
-
-
-
/**
* @class Notifier
*
@@ -20,7 +16,6 @@
class Notifier : public ACE_Event_Handler
{
public:
- // = Initialization and termination methods.
/// Constructor.
Notifier (int argc, ACE_TCHAR *argv[]);
diff --git a/TAO/examples/Load_Balancing/Load_Balancer_i.h b/TAO/examples/Load_Balancing/Load_Balancer_i.h
index 9b1787b6ed6..46ee9caa3bd 100644
--- a/TAO/examples/Load_Balancing/Load_Balancer_i.h
+++ b/TAO/examples/Load_Balancing/Load_Balancer_i.h
@@ -39,9 +39,6 @@ class Object_Group_Factory_i :
// round robin groups).
//
public:
-
- // = Initialization and termination methods.
-
/// Constructor.
Object_Group_Factory_i (void);
@@ -150,9 +147,6 @@ class Object_Group_i : public virtual POA_Load_Balancer::Object_Group
// different load balancing policies.
//
public:
-
- // = Initialization and termination methods.
-
/// Constructor.
Object_Group_i (const char * id,
Object_Group_Factory_i * my_factory);
diff --git a/TAO/examples/Load_Balancing_persistent/Load_Balancer_i.h b/TAO/examples/Load_Balancing_persistent/Load_Balancer_i.h
index 2c56684ec54..190798281df 100644
--- a/TAO/examples/Load_Balancing_persistent/Load_Balancer_i.h
+++ b/TAO/examples/Load_Balancing_persistent/Load_Balancer_i.h
@@ -48,9 +48,6 @@ class Object_Group_Factory_i :
// round robin groups).
//
public:
-
- // = Initialization and termination methods.
-
/// Constructor.
Object_Group_Factory_i (CORBA::ORB_ptr orb,
PortableServer::POA_ptr poa);
@@ -185,9 +182,6 @@ class Object_Group_i
// different load balancing policies.
//
public:
-
- // = Initialization and termination methods.
-
/// Constructor.
Object_Group_i (const char * id,
PortableServer::POA_ptr poa);
diff --git a/TAO/examples/Logging/Logging_Service_i.h b/TAO/examples/Logging/Logging_Service_i.h
index da7f8f70e34..72aec50c78e 100644
--- a/TAO/examples/Logging/Logging_Service_i.h
+++ b/TAO/examples/Logging/Logging_Service_i.h
@@ -42,7 +42,6 @@
class Logger_Server
{
public:
- // = Initialization and termination methods.
/// Constructor.
Logger_Server (void);
diff --git a/TAO/examples/Logging/Logging_Test_i.h b/TAO/examples/Logging/Logging_Test_i.h
index b1a4f98d9f0..4ea1d598921 100644
--- a/TAO/examples/Logging/Logging_Test_i.h
+++ b/TAO/examples/Logging/Logging_Test_i.h
@@ -40,8 +40,6 @@
class Logger_Client
{
public:
- // = Initialization and termination methods.
-
/// Constructor.
Logger_Client (void);
diff --git a/TAO/examples/OBV/Simple_util.h b/TAO/examples/OBV/Simple_util.h
index 07568e48849..d334ff1f7d8 100644
--- a/TAO/examples/OBV/Simple_util.h
+++ b/TAO/examples/OBV/Simple_util.h
@@ -34,8 +34,6 @@ template <class Servant>
class Server
{
public:
- // = Initialization and termination methods.
-
/// Constructor.
Server (void);
@@ -95,8 +93,6 @@ template <class InterfaceObj, class Var>
class Client
{
public:
-
- // = Initialization and termination methods.
/// Constructor.
Client (void);
diff --git a/TAO/examples/OBV/Typed_Events/Client_i.h b/TAO/examples/OBV/Typed_Events/Client_i.h
index f32a3b9b29a..31663db5ee6 100644
--- a/TAO/examples/OBV/Typed_Events/Client_i.h
+++ b/TAO/examples/OBV/Typed_Events/Client_i.h
@@ -32,7 +32,6 @@ CORBA::Float random_number (double min, double max);
class Checkpoint_Client_i
{
public:
- // = Initialization and termination methods.
/// Constructor
Checkpoint_Client_i (void);
diff --git a/TAO/examples/OBV/Typed_Events/Server_i.h b/TAO/examples/OBV/Typed_Events/Server_i.h
index 8e7f535c34b..01ee4d8fdb3 100644
--- a/TAO/examples/OBV/Typed_Events/Server_i.h
+++ b/TAO/examples/OBV/Typed_Events/Server_i.h
@@ -20,7 +20,6 @@
class Checkpoint_i : public POA_Checkpoint
{
public:
- // = Initialization and termination methods.
/// Constructor.
Checkpoint_i (void);
diff --git a/TAO/examples/Persistent_Grid/Grid_Client_i.h b/TAO/examples/Persistent_Grid/Grid_Client_i.h
index 7d1bafb65f2..615a4a50fc6 100644
--- a/TAO/examples/Persistent_Grid/Grid_Client_i.h
+++ b/TAO/examples/Persistent_Grid/Grid_Client_i.h
@@ -28,7 +28,6 @@
class Grid_Client_i
{
public:
- // = Initialization and termination methods.
/// Constructor
Grid_Client_i (void);
diff --git a/TAO/examples/Persistent_Grid/Grid_i.h b/TAO/examples/Persistent_Grid/Grid_i.h
index 66041b0a8c6..31a1dc8dec3 100644
--- a/TAO/examples/Persistent_Grid/Grid_i.h
+++ b/TAO/examples/Persistent_Grid/Grid_i.h
@@ -29,7 +29,6 @@ typedef ACE_Malloc<ACE_MMAP_MEMORY_POOL, ACE_Null_Mutex> pool_t;
class Grid_Factory_i : public POA_Grid_Factory
{
public:
- // = Initialization and termination methods.
/// Constructor.
Grid_Factory_i (void);
@@ -76,8 +75,6 @@ private:
class Grid_i: public POA_Grid
{
public:
- // = Initialization and termination methods.
-
/// Constructor
Grid_i (void);
diff --git a/TAO/examples/Persistent_Grid/Persistent_Client.h b/TAO/examples/Persistent_Grid/Persistent_Client.h
index 1e306814bdf..32d3c55f5c9 100644
--- a/TAO/examples/Persistent_Grid/Persistent_Client.h
+++ b/TAO/examples/Persistent_Grid/Persistent_Client.h
@@ -28,7 +28,6 @@
class Persistent_Client_i
{
public:
- // = Initialization and termination methods.
/// Constructor
Persistent_Client_i (void);
diff --git a/TAO/examples/Persistent_Grid/Simple_util.h b/TAO/examples/Persistent_Grid/Simple_util.h
index dd10bbfbd3e..4742ba66d37 100644
--- a/TAO/examples/Persistent_Grid/Simple_util.h
+++ b/TAO/examples/Persistent_Grid/Simple_util.h
@@ -32,8 +32,6 @@ template <class Servant>
class Server
{
public:
- // = Initialization and termination methods.
-
/// Constructor.
Server (void);
@@ -97,8 +95,6 @@ template <class InterfaceObj, class Var>
class Client
{
public:
-
- // = Initialization and termination methods.
/// Constructor.
Client (void);
diff --git a/TAO/examples/PluggableUDP/tests/Performance/UDP_PerformanceClient.h b/TAO/examples/PluggableUDP/tests/Performance/UDP_PerformanceClient.h
index 433e1a3c08d..1f138762c75 100644
--- a/TAO/examples/PluggableUDP/tests/Performance/UDP_PerformanceClient.h
+++ b/TAO/examples/PluggableUDP/tests/Performance/UDP_PerformanceClient.h
@@ -30,7 +30,6 @@ class UDP_PerformanceClient
// This class wrapps the client functionality into one class
//
public:
- // = Initialization and termination methods.
/// Constructor
UDP_PerformanceClient (CORBA::ORB_ptr orb,
UDP_ptr udp,
diff --git a/TAO/examples/PluggableUDP/tests/Performance/UDP_i.h b/TAO/examples/PluggableUDP/tests/Performance/UDP_i.h
index 8d8f8f79c03..cfb27be63d7 100644
--- a/TAO/examples/PluggableUDP/tests/Performance/UDP_i.h
+++ b/TAO/examples/PluggableUDP/tests/Performance/UDP_i.h
@@ -26,7 +26,6 @@
class UDP_i: public POA_UDP
{
public:
- // = Initialization and termination methods.
/// Constructor
UDP_i (void);
diff --git a/TAO/examples/Simple/Simple_util.h b/TAO/examples/Simple/Simple_util.h
index bb85212e63a..005f514c9b0 100644
--- a/TAO/examples/Simple/Simple_util.h
+++ b/TAO/examples/Simple/Simple_util.h
@@ -34,8 +34,6 @@ template <class Servant>
class Server
{
public:
- // = Initialization and termination methods.
-
/// Constructor.
Server (void);
@@ -103,8 +101,6 @@ template <class ServerInterface>
class Client
{
public:
-
- // = Initialization and termination methods.
/// Constructor.
Client (void);
diff --git a/TAO/examples/Simple/bank/AccountManager_i.h b/TAO/examples/Simple/bank/AccountManager_i.h
index 880aec279c6..b18f8c00829 100644
--- a/TAO/examples/Simple/bank/AccountManager_i.h
+++ b/TAO/examples/Simple/bank/AccountManager_i.h
@@ -44,7 +44,6 @@ TAO_END_VERSIONED_NAMESPACE_DECL
class AccountManager_i : public POA_Bank::AccountManager
{
public:
- // = Initialization and termination methods.
/// Constructor.
AccountManager_i (void);
diff --git a/TAO/examples/Simple/bank/Account_i.h b/TAO/examples/Simple/bank/Account_i.h
index a85bfea5ac1..bbdfa6775ac 100644
--- a/TAO/examples/Simple/bank/Account_i.h
+++ b/TAO/examples/Simple/bank/Account_i.h
@@ -28,7 +28,6 @@
class Account_i : public POA_Bank::Account
{
public:
- // = Initialization and termination methods.
/// Constructor.
Account_i (void);
diff --git a/TAO/examples/Simple/bank/Bank_Client_i.h b/TAO/examples/Simple/bank/Bank_Client_i.h
index 6fef3ed73a3..944707d5e36 100644
--- a/TAO/examples/Simple/bank/Bank_Client_i.h
+++ b/TAO/examples/Simple/bank/Bank_Client_i.h
@@ -28,7 +28,6 @@
class Bank_Client_i
{
public:
- // = Initialization and termination methods.
/// Constructor
Bank_Client_i (void);
diff --git a/TAO/examples/Simple/chat/Broadcaster_i.h b/TAO/examples/Simple/chat/Broadcaster_i.h
index 3d63be65231..1bf825d1d54 100644
--- a/TAO/examples/Simple/chat/Broadcaster_i.h
+++ b/TAO/examples/Simple/chat/Broadcaster_i.h
@@ -34,7 +34,6 @@
class Broadcaster_i : public POA_Broadcaster
{
public:
- // = Initialization and termination methods.
/// Constructor.
Broadcaster_i (void);
diff --git a/TAO/examples/Simple/chat/Client_i.h b/TAO/examples/Simple/chat/Client_i.h
index 4e0d30ce403..c9c8d33be78 100644
--- a/TAO/examples/Simple/chat/Client_i.h
+++ b/TAO/examples/Simple/chat/Client_i.h
@@ -39,7 +39,6 @@
class Client_i : public ACE_Event_Handler
{
public:
- // = Initialization and termination methods.
/// Constructor.
Client_i (void);
diff --git a/TAO/examples/Simple/chat/Receiver_i.h b/TAO/examples/Simple/chat/Receiver_i.h
index 6d70889e6ba..1f9fa39a46a 100644
--- a/TAO/examples/Simple/chat/Receiver_i.h
+++ b/TAO/examples/Simple/chat/Receiver_i.h
@@ -26,7 +26,6 @@
class Receiver_i : public POA_Receiver
{
public:
- // = Initialization and termination methods.
/// Constructor.
Receiver_i (void);
diff --git a/TAO/examples/Simple/chat/Server_i.h b/TAO/examples/Simple/chat/Server_i.h
index 7db88cd1cc6..232234e6726 100644
--- a/TAO/examples/Simple/chat/Server_i.h
+++ b/TAO/examples/Simple/chat/Server_i.h
@@ -28,7 +28,6 @@ class Server_i
{
public:
- // = Initialization and termination methods.
/// Constructor.
Server_i (void);
diff --git a/TAO/examples/Simple/echo/Echo_Client_i.h b/TAO/examples/Simple/echo/Echo_Client_i.h
index db15c556cf1..8f923282d13 100644
--- a/TAO/examples/Simple/echo/Echo_Client_i.h
+++ b/TAO/examples/Simple/echo/Echo_Client_i.h
@@ -28,7 +28,6 @@
class Echo_Client_i
{
public:
- // = Initialization and termination methods.
/// Constructor
Echo_Client_i (void);
diff --git a/TAO/examples/Simple/echo/Echo_i.h b/TAO/examples/Simple/echo/Echo_i.h
index 69a21fdf715..24041f3ee2b 100644
--- a/TAO/examples/Simple/echo/Echo_i.h
+++ b/TAO/examples/Simple/echo/Echo_i.h
@@ -29,7 +29,6 @@
class Echo_i : public POA_Echo
{
public:
- // = Initialization and termination methods.
/// Constructor.
Echo_i (void);
diff --git a/TAO/examples/Simple/grid/Grid_Client_i.h b/TAO/examples/Simple/grid/Grid_Client_i.h
index 79f3302dada..f95daa5c4c6 100644
--- a/TAO/examples/Simple/grid/Grid_Client_i.h
+++ b/TAO/examples/Simple/grid/Grid_Client_i.h
@@ -28,7 +28,6 @@
class Grid_Client_i
{
public:
- // = Initialization and termination methods.
/// Constructor
Grid_Client_i (void);
diff --git a/TAO/examples/Simple/grid/Grid_i.h b/TAO/examples/Simple/grid/Grid_i.h
index b5ca51d374e..8b44630bf84 100644
--- a/TAO/examples/Simple/grid/Grid_i.h
+++ b/TAO/examples/Simple/grid/Grid_i.h
@@ -26,8 +26,6 @@
class Grid_i: public POA_Grid
{
public:
- // = Initialization and termination methods.
-
/// Constructor
Grid_i (void);
@@ -88,7 +86,6 @@ private:
class Grid_Factory_i : public POA_Grid_Factory
{
public:
- // = Initialization and termination methods.
/// Constructor.
Grid_Factory_i (void);
diff --git a/TAO/examples/Simple/time-date/Time_Date_Client_i.h b/TAO/examples/Simple/time-date/Time_Date_Client_i.h
index 2a9c1a5e4b4..9a5df732376 100644
--- a/TAO/examples/Simple/time-date/Time_Date_Client_i.h
+++ b/TAO/examples/Simple/time-date/Time_Date_Client_i.h
@@ -28,7 +28,6 @@
class Time_Date_Client_i
{
public:
- // = Initialization and termination methods.
/// Constructor
Time_Date_Client_i (void);
diff --git a/TAO/examples/Simple/time-date/Time_Date_i.h b/TAO/examples/Simple/time-date/Time_Date_i.h
index 4ce9bbd0c42..9fccb9e978d 100644
--- a/TAO/examples/Simple/time-date/Time_Date_i.h
+++ b/TAO/examples/Simple/time-date/Time_Date_i.h
@@ -25,8 +25,6 @@ class Time_Date_i
// = DESCRIPTION
// Time_Date object implementation
public:
- // = Initialization and termination methods.
-
/// Obtain the time and date in binary format.
virtual void bin_date (CORBA::Long_out time_date);
diff --git a/TAO/examples/Simple/time/Time_Client_i.h b/TAO/examples/Simple/time/Time_Client_i.h
index ac2e797a37d..a1d995efd7c 100644
--- a/TAO/examples/Simple/time/Time_Client_i.h
+++ b/TAO/examples/Simple/time/Time_Client_i.h
@@ -28,7 +28,6 @@
class Time_Client_i
{
public:
- // = Initialization and termination methods.
/// Constructor
Time_Client_i (void);
diff --git a/TAO/examples/Simple/time/Time_i.h b/TAO/examples/Simple/time/Time_i.h
index 5a02c65c9ce..a3c9556d137 100644
--- a/TAO/examples/Simple/time/Time_i.h
+++ b/TAO/examples/Simple/time/Time_i.h
@@ -28,7 +28,6 @@
class Time_i: public POA_Time
{
public:
- // = Initialization and termination methods.
/// Constructor
Time_i (void);