summaryrefslogtreecommitdiff
path: root/apps/Orbix-Examples
diff options
context:
space:
mode:
authorgonzo <gonzo@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-31 23:36:48 +0000
committergonzo <gonzo@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-31 23:36:48 +0000
commit9e1c7ecbc4488f5218432b49c1ec8f44154f630f (patch)
tree5b1c7ed2cf70c9cd1bc82380cf0ae61e4776fc91 /apps/Orbix-Examples
parent4f74cbfae055973889f1454461738e539980e586 (diff)
downloadATCD-9e1c7ecbc4488f5218432b49c1ec8f44154f630f.tar.gz
Added ACE_RCSID to apps/
Diffstat (limited to 'apps/Orbix-Examples')
-rw-r--r--apps/Orbix-Examples/Event_Comm/Consumer/Input_Handler.cpp4
-rw-r--r--apps/Orbix-Examples/Event_Comm/Consumer/Notification_Receiver_Handler.cpp2
-rw-r--r--apps/Orbix-Examples/Event_Comm/Consumer/consumer.cpp4
-rw-r--r--apps/Orbix-Examples/Event_Comm/Supplier/Input_Handler.cpp4
-rw-r--r--apps/Orbix-Examples/Event_Comm/Supplier/Notifier_Handler.cpp4
-rw-r--r--apps/Orbix-Examples/Event_Comm/Supplier/supplier.cpp3
-rw-r--r--apps/Orbix-Examples/Event_Comm/libsrc/Event_CommC.cpp2
-rw-r--r--apps/Orbix-Examples/Event_Comm/libsrc/Event_CommS.cpp2
-rw-r--r--apps/Orbix-Examples/Event_Comm/libsrc/Notification_Receiver_i.cpp3
-rw-r--r--apps/Orbix-Examples/Event_Comm/libsrc/Notifier_i.cpp3
-rw-r--r--apps/Orbix-Examples/Logger/Logger.cpp5
-rw-r--r--apps/Orbix-Examples/Logger/client.cpp5
-rw-r--r--apps/Orbix-Examples/Logger/loggerS.cpp2
-rw-r--r--apps/Orbix-Examples/Logger/logger_i.cpp6
-rw-r--r--apps/Orbix-Examples/Logger/server.cpp4
15 files changed, 35 insertions, 18 deletions
diff --git a/apps/Orbix-Examples/Event_Comm/Consumer/Input_Handler.cpp b/apps/Orbix-Examples/Event_Comm/Consumer/Input_Handler.cpp
index 6b8f6339c5a..ba9423333c8 100644
--- a/apps/Orbix-Examples/Event_Comm/Consumer/Input_Handler.cpp
+++ b/apps/Orbix-Examples/Event_Comm/Consumer/Input_Handler.cpp
@@ -1,8 +1,10 @@
-#include "Input_Handler.h"
// $Id$
+#include "Input_Handler.h"
#include "Notification_Receiver_Handler.h"
+ACE_RCSID(Consumer, Input_Handler, "$Id$")
+
#if defined (ACE_HAS_ORBIX) && (ACE_HAS_ORBIX != 0)
Input_Handler::~Input_Handler (void)
diff --git a/apps/Orbix-Examples/Event_Comm/Consumer/Notification_Receiver_Handler.cpp b/apps/Orbix-Examples/Event_Comm/Consumer/Notification_Receiver_Handler.cpp
index 2574aff6e65..aaf7ec7180b 100644
--- a/apps/Orbix-Examples/Event_Comm/Consumer/Notification_Receiver_Handler.cpp
+++ b/apps/Orbix-Examples/Event_Comm/Consumer/Notification_Receiver_Handler.cpp
@@ -2,6 +2,8 @@
#include "Notification_Receiver_Handler.h"
+ACE_RCSID(Consumer, Notification_Receiver_Handler, "$Id$")
+
#if defined (ACE_HAS_ORBIX) && (ACE_HAS_ORBIX != 0)
#if defined (ACE_HAS_MT_ORBIX) && (ACE_HAS_MT_ORBIX != 0)
diff --git a/apps/Orbix-Examples/Event_Comm/Consumer/consumer.cpp b/apps/Orbix-Examples/Event_Comm/Consumer/consumer.cpp
index 29137661ce3..2816bcfc7ff 100644
--- a/apps/Orbix-Examples/Event_Comm/Consumer/consumer.cpp
+++ b/apps/Orbix-Examples/Event_Comm/Consumer/consumer.cpp
@@ -1,12 +1,12 @@
-/* -*- C++ -*- */
// $Id$
// Consumer driver for the Orbix Notification example.
-
#include "Notification_Receiver_Handler.h"
#include "Input_Handler.h"
+ACE_RCSID(Consumer, consumer, "$Id$")
+
#if defined (ACE_HAS_ORBIX) && (ACE_HAS_ORBIX != 0)
class Consumer : public ACE_Event_Handler
diff --git a/apps/Orbix-Examples/Event_Comm/Supplier/Input_Handler.cpp b/apps/Orbix-Examples/Event_Comm/Supplier/Input_Handler.cpp
index 164e0bc6810..e49f05d3fd5 100644
--- a/apps/Orbix-Examples/Event_Comm/Supplier/Input_Handler.cpp
+++ b/apps/Orbix-Examples/Event_Comm/Supplier/Input_Handler.cpp
@@ -1,9 +1,11 @@
-#include "Event_Comm.hh"
// $Id$
+#include "Event_Comm.hh"
#include "Notifier_Handler.h"
#include "Input_Handler.h"
+ACE_RCSID(Supplier, Input_Handler, "$Id$")
+
#if defined (ACE_HAS_ORBIX) && (ACE_HAS_ORBIX != 0)
int
diff --git a/apps/Orbix-Examples/Event_Comm/Supplier/Notifier_Handler.cpp b/apps/Orbix-Examples/Event_Comm/Supplier/Notifier_Handler.cpp
index d4487ae4734..58b3723eafd 100644
--- a/apps/Orbix-Examples/Event_Comm/Supplier/Notifier_Handler.cpp
+++ b/apps/Orbix-Examples/Event_Comm/Supplier/Notifier_Handler.cpp
@@ -1,6 +1,8 @@
-#include "Notifier_Handler.h"
// $Id$
+#include "Notifier_Handler.h"
+
+ACE_RCSID(Supplier, Notifier_Handler, "$Id$")
#if defined (ACE_HAS_ORBIX) && (ACE_HAS_ORBIX != 0)
diff --git a/apps/Orbix-Examples/Event_Comm/Supplier/supplier.cpp b/apps/Orbix-Examples/Event_Comm/Supplier/supplier.cpp
index 2477568d636..59245f4df17 100644
--- a/apps/Orbix-Examples/Event_Comm/Supplier/supplier.cpp
+++ b/apps/Orbix-Examples/Event_Comm/Supplier/supplier.cpp
@@ -1,4 +1,3 @@
-/* -*- C++ -*- */
// $Id$
// Supplier driver for the Orbix Publish/Subscribe example.
@@ -11,6 +10,8 @@
#include "Notifier_Handler.h"
#include "Input_Handler.h"
+ACE_RCSID(Supplier, supplier, "$Id$")
+
#if defined (ACE_HAS_ORBIX) && (ACE_HAS_ORBIX != 0)
class Supplier : public ACE_Event_Handler
diff --git a/apps/Orbix-Examples/Event_Comm/libsrc/Event_CommC.cpp b/apps/Orbix-Examples/Event_Comm/libsrc/Event_CommC.cpp
index b7e328c556c..973c508fb19 100644
--- a/apps/Orbix-Examples/Event_Comm/libsrc/Event_CommC.cpp
+++ b/apps/Orbix-Examples/Event_Comm/libsrc/Event_CommC.cpp
@@ -1,8 +1,8 @@
-
// $Id$
#include "Event_Comm.hh"
+ACE_RCSID(libsrc, Event_CommC, "$Id$")
#ifndef Event_Comm_Notification_Ops
#define Event_Comm_Notification_Ops
diff --git a/apps/Orbix-Examples/Event_Comm/libsrc/Event_CommS.cpp b/apps/Orbix-Examples/Event_Comm/libsrc/Event_CommS.cpp
index 7609370a2e6..724ecc28c63 100644
--- a/apps/Orbix-Examples/Event_Comm/libsrc/Event_CommS.cpp
+++ b/apps/Orbix-Examples/Event_Comm/libsrc/Event_CommS.cpp
@@ -1,8 +1,8 @@
-
// $Id$
#include "Event_Comm.hh"
+ACE_RCSID(libsrc, Event_CommS, "$Id$")
#define Event_Comm_Notification_Receiver_dispatch_impl
diff --git a/apps/Orbix-Examples/Event_Comm/libsrc/Notification_Receiver_i.cpp b/apps/Orbix-Examples/Event_Comm/libsrc/Notification_Receiver_i.cpp
index 938ac8eb7c8..f5f7b20845e 100644
--- a/apps/Orbix-Examples/Event_Comm/libsrc/Notification_Receiver_i.cpp
+++ b/apps/Orbix-Examples/Event_Comm/libsrc/Notification_Receiver_i.cpp
@@ -1,9 +1,10 @@
-
// $Id$
#include "ace/Service_Config.h"
#include "Notification_Receiver_i.h"
+ACE_RCSID(libsrc, Notification_Receiver_i, "$Id$")
+
#if defined (ACE_HAS_ORBIX) && (ACE_HAS_ORBIX != 0)
Notification_Receiver_i::Notification_Receiver_i (void)
diff --git a/apps/Orbix-Examples/Event_Comm/libsrc/Notifier_i.cpp b/apps/Orbix-Examples/Event_Comm/libsrc/Notifier_i.cpp
index 59d311c50d7..29911a92a63 100644
--- a/apps/Orbix-Examples/Event_Comm/libsrc/Notifier_i.cpp
+++ b/apps/Orbix-Examples/Event_Comm/libsrc/Notifier_i.cpp
@@ -1,9 +1,10 @@
-
// $Id$
#include "Notification_Receiver_i.h"
#include "Notifier_i.h"
+ACE_RCSID(libsrc, Notifier_i, "$Id$")
+
#if defined (ACE_HAS_ORBIX) && (ACE_HAS_ORBIX != 0)
class Notification_Receiver_Entry
diff --git a/apps/Orbix-Examples/Logger/Logger.cpp b/apps/Orbix-Examples/Logger/Logger.cpp
index e5a9f4b76ef..429f9abf5c5 100644
--- a/apps/Orbix-Examples/Logger/Logger.cpp
+++ b/apps/Orbix-Examples/Logger/Logger.cpp
@@ -1,8 +1,11 @@
-#include <iostream.h>
// $Id$
+#include <iostream.h>
+
#include "Logger.h"
+ACE_RCSID(Logger, Logger, "$Id$")
+
Logger::~Logger (void)
{
// Release and free up the object reference.
diff --git a/apps/Orbix-Examples/Logger/client.cpp b/apps/Orbix-Examples/Logger/client.cpp
index 6a0104bd07e..28708b9e2c4 100644
--- a/apps/Orbix-Examples/Logger/client.cpp
+++ b/apps/Orbix-Examples/Logger/client.cpp
@@ -1,13 +1,14 @@
-// A client for the distributed logger example. This program reads
// $Id$
+// A client for the distributed logger example. This program reads
// from either stdin or from a redirected file and sends all the
// contents to the logging server. It also computes how long it takes
// to send this stuff.
-
#include "Logger.h"
+ACE_RCSID(Logger, client, "$Id$")
+
// maximum message size
static size_t max_message_size = BUFSIZ;
diff --git a/apps/Orbix-Examples/Logger/loggerS.cpp b/apps/Orbix-Examples/Logger/loggerS.cpp
index 51d9a70fd03..ac469b1c760 100644
--- a/apps/Orbix-Examples/Logger/loggerS.cpp
+++ b/apps/Orbix-Examples/Logger/loggerS.cpp
@@ -1,8 +1,8 @@
-
// $Id$
#include "logger.hh"
+ACE_RCSID(Logger, loggerS, "$Id$")
#define logger_dispatch_impl
diff --git a/apps/Orbix-Examples/Logger/logger_i.cpp b/apps/Orbix-Examples/Logger/logger_i.cpp
index 1bee6b3f7e1..c71e8d88a9f 100644
--- a/apps/Orbix-Examples/Logger/logger_i.cpp
+++ b/apps/Orbix-Examples/Logger/logger_i.cpp
@@ -1,11 +1,13 @@
-// Implementation of the logger object.
// $Id$
+// Implementation of the logger object.
-#include "ace/OS.h"
#include <iostream.h>
+#include "ace/OS.h"
#include "logger_i.h"
+ACE_RCSID(Logger, logger_i, "$Id$")
+
// Select non-verbose logging by default.
logger_i::logger_i (int verbose)
diff --git a/apps/Orbix-Examples/Logger/server.cpp b/apps/Orbix-Examples/Logger/server.cpp
index 0e9339a7028..2366a40031f 100644
--- a/apps/Orbix-Examples/Logger/server.cpp
+++ b/apps/Orbix-Examples/Logger/server.cpp
@@ -1,7 +1,5 @@
-// server.C
// $Id$
-
// The server for the logger example.
// This uses the TRY,CATCHANY,ENDTRY macros for error testing.
@@ -11,6 +9,8 @@
#include <iostream.h>
#include "logger_i.h"
+ACE_RCSID(Logger, server, "$Id$")
+
int
main (int, char *[])
{