summaryrefslogtreecommitdiff
path: root/TAO/IIOP/test/Orbix
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/IIOP/test/Orbix')
-rw-r--r--TAO/IIOP/test/Orbix/base_server/cubitC.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/base_server/cubitS.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/base_server/cubit_impl.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/base_server/server.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/base_server/tpr.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/client/client.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/client/cubitC.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/factory_client/client.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/factory_client/cubitC.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/factory_client/cubitS.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/tpool/cubitC.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/tpool/cubitS.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/tpool/cubit_impl.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/tpool/server.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/tpool/tpool.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/tpr/cubitC.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/tpr/cubitS.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/tpr/cubit_impl.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/tpr/server.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/tpr/tpr.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/tps/cubitC.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/tps/cubitS.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/tps/cubit_impl.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/tps/server.cpp2
-rw-r--r--TAO/IIOP/test/Orbix/tps/tps.cpp2
25 files changed, 50 insertions, 0 deletions
diff --git a/TAO/IIOP/test/Orbix/base_server/cubitC.cpp b/TAO/IIOP/test/Orbix/base_server/cubitC.cpp
index 1d10b058a70..619a3c776f0 100644
--- a/TAO/IIOP/test/Orbix/base_server/cubitC.cpp
+++ b/TAO/IIOP/test/Orbix/base_server/cubitC.cpp
@@ -2,6 +2,8 @@
#include "cubit.h"
+ACE_RCSID(base_server, cubitC, "$Id$")
+
Cubit::Cubit (char *IT_OR) {
m_pptr = new Cubit_dispatch (IT_OR, this,(CORBA::Object*)this);
}
diff --git a/TAO/IIOP/test/Orbix/base_server/cubitS.cpp b/TAO/IIOP/test/Orbix/base_server/cubitS.cpp
index d72803fed0c..758c1201ad8 100644
--- a/TAO/IIOP/test/Orbix/base_server/cubitS.cpp
+++ b/TAO/IIOP/test/Orbix/base_server/cubitS.cpp
@@ -2,6 +2,8 @@
#include "cubit.h"
+ACE_RCSID(base_server, cubitS, "$Id$")
+
#define Cubit_dispatch_impl
diff --git a/TAO/IIOP/test/Orbix/base_server/cubit_impl.cpp b/TAO/IIOP/test/Orbix/base_server/cubit_impl.cpp
index e96b6e33dcd..4661cba6809 100644
--- a/TAO/IIOP/test/Orbix/base_server/cubit_impl.cpp
+++ b/TAO/IIOP/test/Orbix/base_server/cubit_impl.cpp
@@ -2,6 +2,8 @@
#include "cubit_impl.h"
+ACE_RCSID(base_server, cubit_impl, "$Id$")
+
CORBA::Octet Cubit_Impl:: cube_octet (CORBA::Octet o, CORBA::Environment &IT_env) throw (CORBA::SystemException) {
return (CORBA::Octet) (o * o * o);
}
diff --git a/TAO/IIOP/test/Orbix/base_server/server.cpp b/TAO/IIOP/test/Orbix/base_server/server.cpp
index 527fa13d76e..b8b5b991536 100644
--- a/TAO/IIOP/test/Orbix/base_server/server.cpp
+++ b/TAO/IIOP/test/Orbix/base_server/server.cpp
@@ -12,6 +12,8 @@
#include "cubit_impl.h" // server header file
+ACE_RCSID(base_server, server, "$Id$")
+
int
main (int , char**)
{
diff --git a/TAO/IIOP/test/Orbix/base_server/tpr.cpp b/TAO/IIOP/test/Orbix/base_server/tpr.cpp
index da78690cc2c..9f3bb99ef7e 100644
--- a/TAO/IIOP/test/Orbix/base_server/tpr.cpp
+++ b/TAO/IIOP/test/Orbix/base_server/tpr.cpp
@@ -2,6 +2,8 @@
#include "tpr.h"
+ACE_RCSID(base_server, tpr, "$Id$")
+
void *
worker(void *vp)
{
diff --git a/TAO/IIOP/test/Orbix/client/client.cpp b/TAO/IIOP/test/Orbix/client/client.cpp
index f199078b601..617f212d9a5 100644
--- a/TAO/IIOP/test/Orbix/client/client.cpp
+++ b/TAO/IIOP/test/Orbix/client/client.cpp
@@ -13,6 +13,8 @@
#include "ace/Get_Opt.h"
#include "cubit.h"
+ACE_RCSID(client, client, "$Id$")
+
int LOOP_COUNT;
char SERVER_HOST [1024];
diff --git a/TAO/IIOP/test/Orbix/client/cubitC.cpp b/TAO/IIOP/test/Orbix/client/cubitC.cpp
index 1d10b058a70..0913c5bb786 100644
--- a/TAO/IIOP/test/Orbix/client/cubitC.cpp
+++ b/TAO/IIOP/test/Orbix/client/cubitC.cpp
@@ -2,6 +2,8 @@
#include "cubit.h"
+ACE_RCSID(client, cubitC, "$Id$")
+
Cubit::Cubit (char *IT_OR) {
m_pptr = new Cubit_dispatch (IT_OR, this,(CORBA::Object*)this);
}
diff --git a/TAO/IIOP/test/Orbix/factory_client/client.cpp b/TAO/IIOP/test/Orbix/factory_client/client.cpp
index 1afdecbadf4..d39892c91fe 100644
--- a/TAO/IIOP/test/Orbix/factory_client/client.cpp
+++ b/TAO/IIOP/test/Orbix/factory_client/client.cpp
@@ -13,6 +13,8 @@
#include "ace/Get_Opt.h"
#include "cubit.h"
+ACE_RCSID(factory_client, client, "$Id$")
+
int LOOP_COUNT;
char SERVER_HOST [1024];
diff --git a/TAO/IIOP/test/Orbix/factory_client/cubitC.cpp b/TAO/IIOP/test/Orbix/factory_client/cubitC.cpp
index d19c387bcd2..e265863e99a 100644
--- a/TAO/IIOP/test/Orbix/factory_client/cubitC.cpp
+++ b/TAO/IIOP/test/Orbix/factory_client/cubitC.cpp
@@ -4,6 +4,8 @@
#include "cubit.h"
+ACE_RCSID(factory_client, cubitC, "$Id$")
+
Cubit::Cubit (char *IT_OR) {
m_pptr = new Cubit_dispatch (IT_OR, this,(CORBA::Object*)this);
}
diff --git a/TAO/IIOP/test/Orbix/factory_client/cubitS.cpp b/TAO/IIOP/test/Orbix/factory_client/cubitS.cpp
index 56cf33174a6..6ab08ef55ba 100644
--- a/TAO/IIOP/test/Orbix/factory_client/cubitS.cpp
+++ b/TAO/IIOP/test/Orbix/factory_client/cubitS.cpp
@@ -4,6 +4,8 @@
#include "cubit.hh"
+ACE_RCSID(factory_client, cubitS, "$Id$")
+
#define Cubit_dispatch_impl
diff --git a/TAO/IIOP/test/Orbix/tpool/cubitC.cpp b/TAO/IIOP/test/Orbix/tpool/cubitC.cpp
index 1d10b058a70..afd00fd5c23 100644
--- a/TAO/IIOP/test/Orbix/tpool/cubitC.cpp
+++ b/TAO/IIOP/test/Orbix/tpool/cubitC.cpp
@@ -2,6 +2,8 @@
#include "cubit.h"
+ACE_RCSID(tpool, cubitC, "$Id$")
+
Cubit::Cubit (char *IT_OR) {
m_pptr = new Cubit_dispatch (IT_OR, this,(CORBA::Object*)this);
}
diff --git a/TAO/IIOP/test/Orbix/tpool/cubitS.cpp b/TAO/IIOP/test/Orbix/tpool/cubitS.cpp
index d72803fed0c..f4f78545bac 100644
--- a/TAO/IIOP/test/Orbix/tpool/cubitS.cpp
+++ b/TAO/IIOP/test/Orbix/tpool/cubitS.cpp
@@ -2,6 +2,8 @@
#include "cubit.h"
+ACE_RCSID(tpool, cubitS, "$Id$")
+
#define Cubit_dispatch_impl
diff --git a/TAO/IIOP/test/Orbix/tpool/cubit_impl.cpp b/TAO/IIOP/test/Orbix/tpool/cubit_impl.cpp
index e96b6e33dcd..e1ed154b9f6 100644
--- a/TAO/IIOP/test/Orbix/tpool/cubit_impl.cpp
+++ b/TAO/IIOP/test/Orbix/tpool/cubit_impl.cpp
@@ -2,6 +2,8 @@
#include "cubit_impl.h"
+ACE_RCSID(tpool, cubit_impl, "$Id$")
+
CORBA::Octet Cubit_Impl:: cube_octet (CORBA::Octet o, CORBA::Environment &IT_env) throw (CORBA::SystemException) {
return (CORBA::Octet) (o * o * o);
}
diff --git a/TAO/IIOP/test/Orbix/tpool/server.cpp b/TAO/IIOP/test/Orbix/tpool/server.cpp
index ac107f69ec4..fd486ba5d6f 100644
--- a/TAO/IIOP/test/Orbix/tpool/server.cpp
+++ b/TAO/IIOP/test/Orbix/tpool/server.cpp
@@ -13,6 +13,8 @@
#include "cubit_impl.h" // server header file
#include "tpool.h"
+ACE_RCSID(tpool, server, "$Id$")
+
int
main (int argc, char** argv)
{
diff --git a/TAO/IIOP/test/Orbix/tpool/tpool.cpp b/TAO/IIOP/test/Orbix/tpool/tpool.cpp
index 219503a22d7..008f777cb22 100644
--- a/TAO/IIOP/test/Orbix/tpool/tpool.cpp
+++ b/TAO/IIOP/test/Orbix/tpool/tpool.cpp
@@ -2,6 +2,8 @@
#include "tpool.h"
+ACE_RCSID(tpool, tpool, "$Id$")
+
Thread_Pool::Thread_Pool (int n_threads)
: ACE_Task<ACE_MT_SYNCH> (ACE_Thread_Manager::instance ())
{
diff --git a/TAO/IIOP/test/Orbix/tpr/cubitC.cpp b/TAO/IIOP/test/Orbix/tpr/cubitC.cpp
index 1d10b058a70..4bc7a548c54 100644
--- a/TAO/IIOP/test/Orbix/tpr/cubitC.cpp
+++ b/TAO/IIOP/test/Orbix/tpr/cubitC.cpp
@@ -2,6 +2,8 @@
#include "cubit.h"
+ACE_RCSID(tpr, cubitC, "$Id$")
+
Cubit::Cubit (char *IT_OR) {
m_pptr = new Cubit_dispatch (IT_OR, this,(CORBA::Object*)this);
}
diff --git a/TAO/IIOP/test/Orbix/tpr/cubitS.cpp b/TAO/IIOP/test/Orbix/tpr/cubitS.cpp
index d72803fed0c..410e34b7de3 100644
--- a/TAO/IIOP/test/Orbix/tpr/cubitS.cpp
+++ b/TAO/IIOP/test/Orbix/tpr/cubitS.cpp
@@ -2,6 +2,8 @@
#include "cubit.h"
+ACE_RCSID(tpr, cubitS, "$Id$")
+
#define Cubit_dispatch_impl
diff --git a/TAO/IIOP/test/Orbix/tpr/cubit_impl.cpp b/TAO/IIOP/test/Orbix/tpr/cubit_impl.cpp
index e96b6e33dcd..d0fea470713 100644
--- a/TAO/IIOP/test/Orbix/tpr/cubit_impl.cpp
+++ b/TAO/IIOP/test/Orbix/tpr/cubit_impl.cpp
@@ -2,6 +2,8 @@
#include "cubit_impl.h"
+ACE_RCSID(tpr, cubit_impl, "$Id$")
+
CORBA::Octet Cubit_Impl:: cube_octet (CORBA::Octet o, CORBA::Environment &IT_env) throw (CORBA::SystemException) {
return (CORBA::Octet) (o * o * o);
}
diff --git a/TAO/IIOP/test/Orbix/tpr/server.cpp b/TAO/IIOP/test/Orbix/tpr/server.cpp
index 527fa13d76e..a47b9aea225 100644
--- a/TAO/IIOP/test/Orbix/tpr/server.cpp
+++ b/TAO/IIOP/test/Orbix/tpr/server.cpp
@@ -12,6 +12,8 @@
#include "cubit_impl.h" // server header file
+ACE_RCSID(tpr, server, "$Id$")
+
int
main (int , char**)
{
diff --git a/TAO/IIOP/test/Orbix/tpr/tpr.cpp b/TAO/IIOP/test/Orbix/tpr/tpr.cpp
index da78690cc2c..239cf322833 100644
--- a/TAO/IIOP/test/Orbix/tpr/tpr.cpp
+++ b/TAO/IIOP/test/Orbix/tpr/tpr.cpp
@@ -2,6 +2,8 @@
#include "tpr.h"
+ACE_RCSID(tpr, tpr, "$Id$")
+
void *
worker(void *vp)
{
diff --git a/TAO/IIOP/test/Orbix/tps/cubitC.cpp b/TAO/IIOP/test/Orbix/tps/cubitC.cpp
index d19c387bcd2..5791756e6a4 100644
--- a/TAO/IIOP/test/Orbix/tps/cubitC.cpp
+++ b/TAO/IIOP/test/Orbix/tps/cubitC.cpp
@@ -4,6 +4,8 @@
#include "cubit.h"
+ACE_RCSID(tps, cubitC, "$Id$")
+
Cubit::Cubit (char *IT_OR) {
m_pptr = new Cubit_dispatch (IT_OR, this,(CORBA::Object*)this);
}
diff --git a/TAO/IIOP/test/Orbix/tps/cubitS.cpp b/TAO/IIOP/test/Orbix/tps/cubitS.cpp
index e4637a23680..98e859ca575 100644
--- a/TAO/IIOP/test/Orbix/tps/cubitS.cpp
+++ b/TAO/IIOP/test/Orbix/tps/cubitS.cpp
@@ -4,6 +4,8 @@
#include "cubit.h"
+ACE_RCSID(tps, cubitS, "$Id$")
+
#define Cubit_dispatch_impl
diff --git a/TAO/IIOP/test/Orbix/tps/cubit_impl.cpp b/TAO/IIOP/test/Orbix/tps/cubit_impl.cpp
index 02c30756efc..94c1c4262d1 100644
--- a/TAO/IIOP/test/Orbix/tps/cubit_impl.cpp
+++ b/TAO/IIOP/test/Orbix/tps/cubit_impl.cpp
@@ -2,6 +2,8 @@
#include "cubit_impl.h"
+ACE_RCSID(tps, cubit_impl, "$Id$")
+
CORBA::Octet Cubit_Impl:: cube_octet (CORBA::Octet o, CORBA::Environment &) throw (CORBA::SystemException) {
return (CORBA::Octet) (o * o * o);
}
diff --git a/TAO/IIOP/test/Orbix/tps/server.cpp b/TAO/IIOP/test/Orbix/tps/server.cpp
index c90a1603efa..5f02dbfbe08 100644
--- a/TAO/IIOP/test/Orbix/tps/server.cpp
+++ b/TAO/IIOP/test/Orbix/tps/server.cpp
@@ -12,6 +12,8 @@
#include "cubit_impl.h" // server header file
+ACE_RCSID(tps, server, "$Id$")
+
int
main (int , char**)
{
diff --git a/TAO/IIOP/test/Orbix/tps/tps.cpp b/TAO/IIOP/test/Orbix/tps/tps.cpp
index 19a86b75ffd..9ab83e9bc8d 100644
--- a/TAO/IIOP/test/Orbix/tps/tps.cpp
+++ b/TAO/IIOP/test/Orbix/tps/tps.cpp
@@ -2,6 +2,8 @@
#include "tps.h"
+ACE_RCSID(tps, tps, "$Id$")
+
int
TPS_Filter::inRequestPreMarshal(CORBA::Request &r, CORBA::Environment& env)
{