summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple
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/Simple
parent0acedb74f7bec47143ca8bcf542c8ae3cea15edb (diff)
downloadATCD-814e79122b919520b7a337408d8b66f9f30d38bf.tar.gz
Removed old comments before constructor/destructor
Diffstat (limited to 'TAO/examples/Simple')
-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
16 files changed, 0 insertions, 22 deletions
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);