aboutsummaryrefslogtreecommitdiff
path: root/devel/ace+tao
diff options
context:
space:
mode:
authorSergey Matveychuk <sem@FreeBSD.org>2004-12-07 13:32:53 +0000
committerSergey Matveychuk <sem@FreeBSD.org>2004-12-07 13:32:53 +0000
commit7896da2ae56d92ab1f7b186534b7468df69ae86e (patch)
tree0fa3d86d0629e50ca7429e2530de7f08fc44eef5 /devel/ace+tao
parent6638a6806fa9543afa6f8b9412bd75095027a25a (diff)
downloadports-7896da2ae56d92ab1f7b186534b7468df69ae86e.tar.gz
ports-7896da2ae56d92ab1f7b186534b7468df69ae86e.zip
Notes
Diffstat (limited to 'devel/ace+tao')
-rw-r--r--devel/ace+tao/Makefile32
-rw-r--r--devel/ace+tao/distinfo4
-rw-r--r--devel/ace+tao/files/config.h232
-rw-r--r--devel/ace+tao/files/patch-aa21
-rw-r--r--devel/ace+tao/files/patch-ab25
-rw-r--r--devel/ace+tao/files/patch-ac24
-rw-r--r--devel/ace+tao/files/patch-ae123
-rw-r--r--devel/ace+tao/files/patch-af11
-rw-r--r--devel/ace+tao/files/patch-ag10
-rw-r--r--devel/ace+tao/pkg-plist1682
10 files changed, 994 insertions, 1170 deletions
diff --git a/devel/ace+tao/Makefile b/devel/ace+tao/Makefile
index 6c1dd31b2c40..acc0db08247c 100644
--- a/devel/ace+tao/Makefile
+++ b/devel/ace+tao/Makefile
@@ -18,8 +18,8 @@ COMMENT?= The Adaptive Communication Environment (ACE) with The ACE ORB (TAO)
CONFLICTS?= ace-*
-ACE_VERSION= 5.4.1
-TAO_VERSION= 1.4.1
+ACE_VERSION= 5.4.2
+TAO_VERSION= 1.4.2
USE_BZIP2= yes
USE_GMAKE= yes
@@ -44,22 +44,13 @@ TAO_ROOT= ${ACE_ROOT}/TAO
PLIST_SUB+= TAO=${TAO} TESTS=${TESTS} \
ACE_VERSION=${ACE_VERSION} TAO_VERSION=${TAO_VERSION}
-.include <bsd.port.pre.mk>
-
-.if ${OSVERSION} >= 502125
-WITHOUT_TAO= yes
-pre-extract:
- @${ECHO_MSG} "****************************************************"; \
- ${ECHO_MSG} "* TAO is not build with gcc 3.4 *"; \
- ${ECHO_MSG} "* so only ACE will build and install *"; \
- ${ECHO_MSG} "****************************************************"
-.endif
-
.if defined(WITHOUT_TAO)
TAO= "@comment "
PKGNAMESUFFIX?= -notao
.endif
+.include <bsd.port.pre.mk>
+
post-patch:
@${SED} -e "s#%%CFLAGS%%#${CFLAGS}#;s#%%PREFIX%%#${PREFIX}#; \
s#%%PTHREAD_CFLAGS%%#${PTHREAD_CFLAGS}#; \
@@ -71,13 +62,12 @@ post-patch:
${CHMOD} a-x Logging_Service/Event_Logging_Service/*; \
${CHMOD} a-x Logging_Service/Notify_Logging_Service/*; \
${CHMOD} a-x Logging_Service/RTEvent_Logging_Service/*; \
- ${CHMOD} a-x orbsvcs/*.mpb; \
${CHMOD} a-x orbsvcs/FaultTolerance/*; \
${CHMOD} a-x FT_ReplicationManager/*
.if !defined(WITH_TESTS)
- @${REINPLACE_CMD} -e "21d" ${ACE_ROOT}/Makefile
- @${REINPLACE_CMD} -e "24d" ${TAO_ROOT}/Makefile
- @${REINPLACE_CMD} -e "48d" ${TAO_ROOT}/orbsvcs/Makefile
+ @${REINPLACE_CMD} -e "30d" ${ACE_ROOT}/GNUmakefile
+ @${REINPLACE_CMD} -e "27d" ${TAO_ROOT}/GNUmakefile
+ @${REINPLACE_CMD} -e "45d" ${TAO_ROOT}/orbsvcs/GNUmakefile
.endif
pre-build:
@@ -95,6 +85,8 @@ do-build:
.endif
.if !defined(WITHOUT_TAO)
@${ECHO_MSG} "===> Building TAO"; \
+ ${GMAKE} -C ${TAO_ROOT}/TAO_IDL ACE_ROOT=${ACE_ROOT} TAO_ROOT=${TAO_ROOT}; \
+ ${LDCONFIG} -m ${TAO_ROOT}/TAO_IDL; \
${GMAKE} -C ${TAO_ROOT} ACE_ROOT=${ACE_ROOT} TAO_ROOT=${TAO_ROOT}
.if defined(WITH_TESTS)
@${TOUCH} ${TOUCH_FLAGS} ${TAO_TESTS_COOKIE}
@@ -115,7 +107,7 @@ test:
@if [ -f ${ACE_TESTS_COOKIE} ]; then \
${ECHO_MSG} "===> Running tests."; \
${ECHO_MSG} "===> ACE tests:"; \
- cd ${ACE_ROOT}/tests; ./run_test.pl; \
+ cd ${ACE_ROOT}/tests; env ACE_ROOT=${ACE_ROOT} ./run_test.pl; \
if [ -f ${TAO_TESTS_COOKIE} ]; then \
${ECHO_MSG} "===> TAO tests:"; \
${ECHO_MSG} " NOT IMPLEMENTED YET. Run them with:"; \
@@ -165,7 +157,7 @@ do-install:
.endif
@${ECHO_MSG} "Installing libraries into ${PREFIX}/lib"; \
- cd ${ACE_ROOT}/ace; \
+ cd ${ACE_ROOT}/lib; \
for f in `${FIND} . -maxdepth 1 -name "lib*.so.${ACE_VERSION}" -o \
-name "lib*.so.${TAO_VERSION}" -not -name "*Test*"`; do \
${INSTALL_DATA} $${f} ${PREFIX}/lib; \
@@ -183,7 +175,7 @@ do-install:
${GREP} -v test | ${GREP} -v FTRT_Event_Service`; do \
${INSTALL_PROGRAM} $${f} ${PREFIX}/bin; \
done; \
- for f in `find utils -type f -perm +a+x`; do \
+ for f in `find utils -type f -perm +a+x -not -name "*test*"`; do \
${INSTALL_PROGRAM} $${f} ${PREFIX}/bin; \
done; \
for f in `${FIND} orbsvcs/FTRT_Event_Service -type f -perm +a+x`; do \
diff --git a/devel/ace+tao/distinfo b/devel/ace+tao/distinfo
index 5d83881461a0..409648c15a2b 100644
--- a/devel/ace+tao/distinfo
+++ b/devel/ace+tao/distinfo
@@ -1,2 +1,2 @@
-MD5 (ACE-5.4.1+TAO-1.4.1.tar.bz2) = 403220fba7cbc33c6f18047bc6f1a3c3
-SIZE (ACE-5.4.1+TAO-1.4.1.tar.bz2) = 14206098
+MD5 (ACE-5.4.2+TAO-1.4.2.tar.bz2) = 71d394a1973bc64bddea2e9b26286ae2
+SIZE (ACE-5.4.2+TAO-1.4.2.tar.bz2) = 14042566
diff --git a/devel/ace+tao/files/config.h b/devel/ace+tao/files/config.h
index cbd632ae15fe..ef5d4f892b85 100644
--- a/devel/ace+tao/files/config.h
+++ b/devel/ace+tao/files/config.h
@@ -1,231 +1 @@
-/* -*- C++ -*- */
-// config-freebsd.h,v 4.48 2003/08/09 04:43:51 dhinton Exp
-
-// The following configuration file is designed to work for FreeBSD
-
-#ifndef ACE_CONFIG_H
-#define ACE_CONFIG_H
-#include /**/ "ace/pre.h"
-
-#if !defined (ACE_MT_SAFE)
-# define ACE_MT_SAFE 1
-#endif
-
-#if ACE_MT_SAFE
- // Yes, we do have threads.
-# define ACE_HAS_THREADS 1
-#else
- // Set to 0 since that's what config-posix.h checks for.
-# define ACE_HAS_THREADS 0
-#endif /* ACE_MT_SAFE */
-
-#include "ace/config-posix.h"
-
-#include <osreldate.h>
-// Make sure we source in the OS version.
-
-#if ! defined (__ACE_INLINE__)
-#define __ACE_INLINE__
-#endif /* ! __ACE_INLINE__ */
-
-#define ACE_SIZEOF_LONG_DOUBLE 12
-
-#if defined (__GNUG__)
-# include "ace/config-g++-common.h"
-#endif /* __GNUG__ */
-
-#if defined (ACE_HAS_PENTIUM)
-# undef ACE_HAS_PENTIUM
-#endif /* ACE_HAS_PENTIUM */
-
-// Platform specific directives
-// gcc defines __FreeBSD__ automatically for us.
-#ifdef ACE_HAS_THREADS
-#if !defined (_THREAD_SAFE)
-#define _THREAD_SAFE
-#endif /* _THREAD_SAFE */
-#endif
-
-#define ACE_HAS_GPERF
-
-#define ACE_HAS_ALT_CUSERID
-#define ACE_HAS_RECURSIVE_THR_EXIT_SEMANTICS
-#define ACE_HAS_SIG_MACROS
-// Optimize ACE_Handle_Set for select().
-#define ACE_HAS_HANDLE_SET_OPTIMIZED_FOR_SELECT
-#define ACE_HAS_NONCONST_SELECT_TIMEVAL
-#define ACE_HAS_CHARPTR_DL
-
-#define ACE_NEEDS_SCHED_H
-
-// Use of <malloc.h> is deprecated.
-#define ACE_LACKS_MALLOC_H
-
-// This won't be necessary after it is fixed in the system include headers.
-extern "C" { char * cuserid (char *s); }
-
-// Platform supports POSIX timers via struct timespec.
-#define ACE_HAS_POSIX_TIME
-#define ACE_HAS_UALARM
-
-// Platform defines struct timespec but not timespec_t
-#define ACE_LACKS_TIMESPEC_T
-
-#define ACE_LACKS_SYSTIME_H
-
-#if (__FreeBSD_version < 501000)
-#define ACE_LACKS_STDINT_H
-#endif
-
-#define ACE_LACKS_STRRECVFD
-
-#define ACE_HAS_SIN_LEN
-
-// Platform supports System V IPC (most versions of UNIX, but not Win32)
-#define ACE_HAS_SYSV_IPC
-
-// Compiler/platform contains the <sys/syscall.h> file.
-#define ACE_HAS_SYSCALL_H
-
-#define ACE_HAS_SIGINFO_T
-
-#define ACE_HAS_REENTRANT_FUNCTIONS
-#define ACE_LACKS_NETDB_REENTRANT_FUNCTIONS
-#define ACE_HAS_2_PARAM_ASCTIME_R_AND_CTIME_R
-
-#if (__FreeBSD_version < 501000)
-#define ACE_LACKS_PWD_REENTRANT_FUNCTIONS
-#endif
-
-#define ACE_HAS_CONSISTENT_SIGNAL_PROTOTYPES
-#define ACE_LACKS_SIGINFO_H
-
-#define ACE_LACKS_SI_ADDR
-
-// Compiler/platform supports SVR4 signal typedef
-#define ACE_HAS_SVR4_SIGNAL_T
-
-// Compiler/platform supports alloca().
-// Although ACE does have alloca() on this compiler/platform combination, it is
-// disabled by default since it can be dangerous. Uncomment the following line
-// if you ACE to use it.
-//#define ACE_HAS_ALLOCA
-
-// Compiler/platform supports SVR4 dynamic linking semantics..
-#define ACE_HAS_SVR4_DYNAMIC_LINKING
-
-// Compiler/platform correctly calls init()/fini() for shared libraries.
-#define ACE_HAS_AUTOMATIC_INIT_FINI
-
-// Explicit dynamic linking permits "lazy" symbol resolution
-#define ACE_HAS_RTLD_LAZY_V
-
-// platform supports POSIX O_NONBLOCK semantics
-#define ACE_HAS_POSIX_NONBLOCK
-
-// platform supports IP multicast
-#define ACE_HAS_IP_MULTICAST
-
-// Lacks perfect filtering, must bind group address.
-#if !defined ACE_LACKS_PERFECT_MULTICAST_FILTERING
-# define ACE_LACKS_PERFECT_MULTICAST_FILTERING 1
-#endif /* ACE_LACKS_PERFECT_MULTICAST_FILTERING */
-
-// Compiler/platform has <alloca.h>
-//#define ACE_HAS_ALLOCA_H
-
-// Compiler/platform has the getrusage() system call.
-#define ACE_HAS_GETRUSAGE
-
-// Compiler/platform defines the sig_atomic_t typedef.
-#define ACE_HAS_SIG_ATOMIC_T
-
-// Compiler/platform supports sys_siglist array.
-// *** This refers to (_sys_siglist) instead of (sys_siglist)
-// #define ACE_HAS_SYS_SIGLIST
-
-// Compiler/platform defines a union semun for SysV shared memory.
-#define ACE_HAS_SEMUN
-
-// Compiler supports the ssize_t typedef.
-#define ACE_HAS_SSIZE_T
-
-// Compiler/platform supports strerror ().
-#define ACE_HAS_STRERROR
-
-// Compiler/platform provides the sockio.h file.
-#define ACE_HAS_SOCKIO_H
-
-// Defines the page size of the system.
-#define ACE_PAGE_SIZE 4096
-
-// Platform provides <sys/filio.h> header.
-#define ACE_HAS_SYS_FILIO_H
-
-// Compiler/platform supports SVR4 gettimeofday() prototype
-#define ACE_HAS_SUNOS4_GETTIMEOFDAY
-// #define ACE_HAS_TIMEZONE_GETTIMEOFDAY
-
-// Turns off the tracing feature.
-#if !defined (ACE_NTRACE)
-#define ACE_NTRACE 1
-#endif /* ACE_NTRACE */
-
-#define ACE_HAS_MSG
-#define ACE_HAS_4_4BSD_SENDMSG_RECVMSG
-
-#if (__FreeBSD_version < 500100)
-# define ACE_HAS_NONCONST_MSGSND
-#endif
-
-// Thread specific settings
-// Yes, we do have threads.
-#ifdef ACE_HAS_THREADS
-#if !defined (ACE_MT_SAFE)
-# define ACE_MT_SAFE 1
-#endif /* ! ACE_MT_SAFE */
-#endif /* ACE_HAS_THREADS */
-
-#define ACE_LACKS_THREAD_PROCESS_SCOPING
-#define ACE_LACKS_CONDATTR_PSHARED
-#define ACE_LACKS_MUTEXATTR_PSHARED
-#define ACE_HAS_THREAD_SPECIFIC_STORAGE
-#define ACE_HAS_DIRENT
-
-#define ACE_HAS_SIGWAIT
-
-#define ACE_HAS_TERM_IOCTLS
-#define ACE_USES_NEW_TERMIOS_STRUCT
-#define TCGETS TIOCGETA
-#define TCSETS TIOCSETA
-
-#define ACE_HAS_UCONTEXT_T
-#define ACE_HAS_SOCKLEN_T
-#define ACE_HAS_GETIFADDRS
-#define ACE_HAS_PTHREADS_UNIX98_EXT
-
-#ifndef ACE_HAS_SNPRINTF
-#define ACE_HAS_SNPRINTF
-#endif
-
-// Note, on FreeBSD 5, POSIX aio is now an optional kernel module which
-// must be loaded.
-// Read the aio(4) man page for what to do, otherwise any aio_* call
-// will coredump.
-
-// By default use Proactor which does not use POSIX Real-time Signals
-#ifdef ACE_HAS_AIO_CALLS
-#ifndef ACE_POSIX_AIOCB_PROACTOR
-#define ACE_POSIX_AIOCB_PROACTOR
-#endif /* ACE_POSIX_AIOCB_PROACTOR */
-#endif /* ACE_HAS_AIO_CALLS */
-
-/* FreeBSD does not define sigval_t */
-#include <sys/signal.h>
-typedef union sigval sigval_t;
-
-#define ACE_LACKS_STROPTS_H
-
-#include /**/ "ace/post.h"
-
-#endif /* ACE_CONFIG_H */
+#include <ace/config-freebsd.h>
diff --git a/devel/ace+tao/files/patch-aa b/devel/ace+tao/files/patch-aa
index 2a075ca3ffd7..b2635cb5b0b7 100644
--- a/devel/ace+tao/files/patch-aa
+++ b/devel/ace+tao/files/patch-aa
@@ -1,11 +1,12 @@
---- Makefile.orig Tue Dec 2 10:18:36 2003
-+++ Makefile Tue Dec 2 10:18:52 2003
-@@ -20,8 +20,6 @@
- netsvcs \
- tests \
- apps \
-- examples \
-- performance-tests \
- websvcs \
- Kokyu
+--- GNUmakefile.orig Mon Dec 6 02:23:28 2004
++++ GNUmakefile Mon Dec 6 02:24:35 2004
+@@ -26,9 +26,7 @@
+ $(KEEP_GOING)@cd ASNMP && $(MAKE) -f $(MAKEFILE) $(@)
+ $(KEEP_GOING)@cd ACEXML && $(MAKE) -f $(MAKEFILE) $(@)
+ $(KEEP_GOING)@cd apps && $(MAKE) -f $(MAKEFILE) $(@)
+- $(KEEP_GOING)@cd examples && $(MAKE) -f $(MAKEFILE) $(@)
+ $(KEEP_GOING)@cd netsvcs && $(MAKE) -f $(MAKEFILE) $(@)
+- $(KEEP_GOING)@cd performance-tests && $(MAKE) -f $(MAKEFILE) $(@)
+ $(KEEP_GOING)@cd tests && $(MAKE) -f $(MAKEFILE) $(@)
+ $(KEEP_GOING)@cd websvcs && $(MAKE) -f $(MAKEFILE) $(@)
diff --git a/devel/ace+tao/files/patch-ab b/devel/ace+tao/files/patch-ab
index 1593e20fcff2..c0af8263cc49 100644
--- a/devel/ace+tao/files/patch-ab
+++ b/devel/ace+tao/files/patch-ab
@@ -1,15 +1,12 @@
---- TAO/Makefile.orig Mon Jan 5 10:18:45 1970
-+++ TAO/Makefile Fri Jan 16 02:08:11 2004
-@@ -23,11 +23,7 @@
- TAO_IDL \
- tests \
- orbsvcs \
-- examples \
-- performance-tests \
-- utils \
-- docs/tutorials/Quoter \
-- CIAO
-+ utils
+--- TAO/GNUmakefile.orig Mon Dec 6 02:26:28 2004
++++ TAO/GNUmakefile Mon Dec 6 02:27:44 2004
+@@ -24,9 +24,6 @@
+ $(KEEP_GOING)@cd TAO_IDL && $(MAKE) -f $(MAKEFILE) $(@)
+ $(KEEP_GOING)@cd tao && $(MAKE) -f $(MAKEFILE) $(@)
+ $(KEEP_GOING)@cd orbsvcs && $(MAKE) -f $(MAKEFILE) $(@)
+- $(KEEP_GOING)@cd examples && $(MAKE) -f $(MAKEFILE) $(@)
+- $(KEEP_GOING)@cd docs && $(MAKE) -f $(MAKEFILE) $(@)
+- $(KEEP_GOING)@cd performance-tests && $(MAKE) -f $(MAKEFILE) $(@)
+ $(KEEP_GOING)@cd tests && $(MAKE) -f $(MAKEFILE) $(@)
+ $(KEEP_GOING)@cd utils && $(MAKE) -f $(MAKEFILE) $(@)
- CLONE = Makefile \
- tao \
diff --git a/devel/ace+tao/files/patch-ac b/devel/ace+tao/files/patch-ac
index 195e4cb84cce..fdc6071df239 100644
--- a/devel/ace+tao/files/patch-ac
+++ b/devel/ace+tao/files/patch-ac
@@ -1,16 +1,10 @@
---- TAO/orbsvcs/Makefile.orig Thu Jan 15 22:51:35 2004
-+++ TAO/orbsvcs/Makefile Thu Jan 15 22:52:27 2004
-@@ -43,10 +43,9 @@
- Trading_Service \
- LoadBalancer \
- TAO_Service \
-- PSS \
-- tests \
-- performance-tests \
-- examples
-+ PSS
-+
-+DIRS += tests
+--- TAO/orbsvcs/GNUmakefile.orig Mon Dec 6 02:28:37 2004
++++ TAO/orbsvcs/GNUmakefile Mon Dec 6 02:30:00 2004
+@@ -42,7 +42,5 @@
+ $(KEEP_GOING)@cd Dump_Schedule && $(MAKE) -f $(MAKEFILE) $(@)
+ $(KEEP_GOING)@cd CosEvent_Service && $(MAKE) -f $(MAKEFILE) $(@)
+ $(KEEP_GOING)@cd Concurrency_Service && $(MAKE) -f $(MAKEFILE) $(@)
+- $(KEEP_GOING)@cd performance-tests && $(MAKE) -f $(MAKEFILE) $(@)
+ $(KEEP_GOING)@cd tests && $(MAKE) -f $(MAKEFILE) $(@)
+- $(KEEP_GOING)@cd examples && $(MAKE) -f $(MAKEFILE) $(@)
- ifeq ($(minimum_corba),0)
- ifneq (Compilers 4.2,$(findstring Compilers 4.2,$(CC_VERSION)))
diff --git a/devel/ace+tao/files/patch-ae b/devel/ace+tao/files/patch-ae
new file mode 100644
index 000000000000..9e5753df0db6
--- /dev/null
+++ b/devel/ace+tao/files/patch-ae
@@ -0,0 +1,123 @@
+--- ace/OS_NS_time.h.orig Thu Jun 11 23:14:04 1970
++++ ace/OS_NS_time.h Mon Dec 6 02:46:06 2004
+@@ -4,7 +4,7 @@
+ /**
+ * @file OS_NS_time.h
+ *
+- * OS_NS_time.h,v 1.8 2004/06/20 16:51:08 jtc Exp
++ * $Id: OS_NS_time.h,v 1.12 2004/11/12 00:03:08 gmaxey Exp $
+ *
+ * @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
+ * @author Jesper S. M|ller<stophph@diku.dk>
+@@ -25,6 +25,7 @@
+ # pragma once
+ # endif /* ACE_LACKS_PRAGMA_ONCE */
+
++#include "ace/OS_NS_errno.h"
+ #include "ace/Basic_Types.h"
+ #include "ace/os_include/os_time.h"
+ #include "ace/ACE_export.h"
+@@ -105,10 +106,6 @@
+ #endif /* ACE_PSOS_HAS_TIME */
+
+ #if defined (ACE_HAS_WINCE)
+- /// Supporting data for ctime and ctime_r functions on WinCE.
+- const wchar_t *day_of_week_name[7];
+- const wchar_t *month_name[12];
+-
+ // WinCE doesn't have most of the standard C library time functions. It
+ // also doesn't define struct tm. SYSTEMTIME has pretty much the same
+ // info though, so we can map it when needed. Define struct tm here and
+@@ -137,48 +134,35 @@
+ */
+ inline long ace_timezone()
+ {
+-#if !defined (VXWORKS) && !defined (ACE_PSOS) && !defined (CHORUS)
+-# if defined (ACE_HAS_WINCE)
++#if defined (ACE_HAS_WINCE)
+ TIME_ZONE_INFORMATION tz;
+ GetTimeZoneInformation (&tz);
+ return tz.Bias * 60;
+-# elif defined (ACE_WIN32) && !defined (ACE_HAS_DINKUM_STL)
++#elif defined (ACE_WIN32) && !defined (ACE_HAS_DINKUM_STL)
+ return _timezone; // For Win32.
+-# elif defined (ACE_WIN32) && defined (ACE_HAS_DINKUM_STL)
++#elif defined (ACE_WIN32) && defined (ACE_HAS_DINKUM_STL)
+ time_t tod = time(0); // get current time
+ time_t t1 = mktime(gmtime(&tod)); // convert without timezone
+ time_t t2 = mktime(localtime(&tod)); // convert with timezone
+ return difftime(t1, t2); // compute difference in seconds
+-# elif defined (ACE_HAS_TIMEZONE_GETTIMEOFDAY) \
+- && !defined (__linux__) \
+- && !defined (__FreeBSD__) \
+- && !defined (__NetBSD__)
++#elif defined (ACE_HAS_TIMEZONE)
++ // The XPG/POSIX specification requires that tzset() be called to
++ // set the global variable <timezone>.
++ ::tzset();
++ return timezone;
++#elif defined (ACE_HAS_TIMEZONE_GETTIMEOFDAY)
+ // The XPG/POSIX specification does not require gettimeofday to
+ // set the timezone struct (it leaves the behavior of passing a
+- // non-null struct undefined). We know gettimeofday() on Linux
+- // *BSD systems does not set the timezone, so we avoid using it
+- // and use the global variable <timezone> instead.
+- //
+- // @note As of this writing, OpenBSD does not provide the global
+- // variable timezone.
+- //
+- // @todo It would be better if we had a feature test macro that
+- // could be used instead of a list of operating systems.
++ // non-null struct undefined).
+ long result = 0;
+ struct timeval time;
+ struct timezone zone;
+ ACE_UNUSED_ARG (result);
+ ACE_OSCALL (::gettimeofday (&time, &zone), int, -1, result);
+ return zone.tz_minuteswest * 60;
+-# else /* ACE_HAS_TIMEZONE_GETTIMEOFDAY */
+- // The XPG/POSIX specification requires that tzset() be called to
+- // set the global variable <timezone>.
+- ::tzset();
+- return timezone;
+-# endif /* ACE_HAS_TIMEZONE_GETTIMEOFDAY */
+-#else
++#else
+ ACE_NOTSUP_RETURN (0);
+-#endif /* !ACE_HAS_WINCE && !VXWORKS && !ACE_PSOS */
++#endif
+ }
+
+
+@@ -217,6 +201,8 @@
+ # endif // ACE_LACKS_LONGLONG_T
+ # elif defined (ACE_PSOS)
+ typedef ACE_UINT64 ACE_hrtime_t;
++# elif defined (_TNS_R_TARGET)
++typedef long long ACE_hrtime_t;
+ # else /* !ACE_WIN32 && !ACE_PSOS */
+ # if defined (ACE_HAS_HI_RES_TIMER) && !defined (ACE_LACKS_LONGLONG_T)
+ /* hrtime_t is defined on systems (Suns) with ACE_HAS_HI_RES_TIMER */
+@@ -227,8 +213,22 @@
+ # endif /* ACE_WIN32 */
+
+
++# if defined (ACE_HRTIME_T_IS_BASIC_TYPE)
++# define ACE_HRTIME_CONVERSION(VAL) (VAL)
++# define ACE_HRTIME_TO_U64(VAL) ACE_U_LongLong(VAL)
++# else
++# define ACE_HRTIME_CONVERSION(VAL) ACE_U64_TO_U32(VAL)
++# define ACE_HRTIME_TO_U64(VAL) (VAL)
++# endif
++
+
+ namespace ACE_OS {
++
++# if defined (ACE_HAS_WINCE)
++ /// Supporting data for ctime and ctime_r functions on WinCE.
++ const wchar_t *day_of_week_name[];
++ const wchar_t *month_name[];
++# endif /* ACE_HAS_WINCE */
+
+ # if defined (CHORUS) && !defined (CHORUS_4)
+ // We must format this code as follows to avoid confusing OSE.
diff --git a/devel/ace+tao/files/patch-af b/devel/ace+tao/files/patch-af
new file mode 100644
index 000000000000..c9bb9f1bf532
--- /dev/null
+++ b/devel/ace+tao/files/patch-af
@@ -0,0 +1,11 @@
+--- tests/GNUmakefile.orig Mon Dec 6 03:10:52 2004
++++ tests/GNUmakefile Mon Dec 6 03:11:14 2004
+@@ -19,7 +19,7 @@
+
+ include $(ACE_ROOT)/include/makeinclude/macros.GNU
+
+-all: Test_Output MT_Reactor_Upcall_Test ACE_Init_Test ACE_Test ARGV_Test Aio_Platform_Test Arg_Shifter_Test Atomic_Op_Test Auto_IncDec_Test Barrier_Test Basic_Types_Test Bound_Ptr_Test Buffer_Stream_Test Bug_1576_Regression_Test CDR_Array_Test CDR_File_Test CDR_Test Cache_Map_Manager_Test Cached_Accept_Conn_Test Cached_Allocator_Test Cached_Conn_Test Capabilities_Test Codecs_Test Collection_Test Config_Test Conn_Test DLL_Test DLL_Test_Lib DLList_Test Date_Time_Test Dev_Poll_Reactor_Test Dirent_Test Dynamic_Priority_Test Enum_Interfaces_Test Env_Value_Test FIFO_Test FlReactor_Test Framework_Component_DLL Framework_Component_Test Future_Set_Test Future_Test Get_Opt_Test Handle_Set_Test Hash_Map_Bucket_Iterator_Test Hash_Map_Manager_Test High_Res_Timer_Test INET_Addr_Test INET_Addr_Test_IPV6 IOStream_Test Lazy_Map_Manager_Test Log_Msg_Test Logging_Strategy_Test MEM_Stream_Test MM_Shared_Memory_Test MT_Reactor_Timer_Test MT_Ref_Counted_Event_Handler_Test MT_Reference_Counted_Notify_Test MT_SOCK_Test Malloc_Test Map_Manager_Test Map_Test Max_Default_Port_Test Max_Default_Port_Test_IPV6 Mem_Map_Test Message_Block_Test Message_Queue_Notifications_Test Message_Queue_Test Message_Queue_Test_Ex Multicast_Test Multicast_Test_IPV6 Multihomed_INET_Addr_Test Multihomed_INET_Addr_Test_IPV6 Naming_Test New_Fail_Test NonBlocking_Conn_Test Notify_Performance_Test OS_Test Object_Manager_Test Obstack_Test OrdMultiSet_Test Pipe_Test Priority_Buffer_Test Priority_Reactor_Test Priority_Task_Test Proactor_Scatter_Gather_Test Proactor_Test Proactor_Test_IPV6 Proactor_Timer_Test Process_Manager_Test Process_Mutex_Test Process_Strategy_Test RB_Tree_Test Reactor_Dispatch_Order_Test Reactor_Exceptions_Test Reactor_Notification_Queue_Test Reactor_Notify_Test Reactor_Performance_Test Reactor_Registration_Test Reactor_Timer_Test Reactors_Test Reader_Writer_Test Recursive_Condition_Bug_Test Recursive_Condition_Test Recursive_Mutex_Test Refcounted_Auto_Ptr_Test Reference_Counted_Event_Handler_Test Reverse_Lock_Test SOCK_Connector_Test SOCK_Dgram_Bcast_Test SOCK_Dgram_Test SOCK_Send_Recv_Test SOCK_Send_Recv_Test_IPV6 SOCK_Test SOCK_Test_IPv6 SPIPE_Test SString_Test SV_Shared_Memory_Test Semaphore_Test Service_Config_DLL Service_Config_Test Signal_Test Sigset_Ops_Test Simple_Message_Block_Test Svc_Handler_Test TP_Reactor_Test TSS_Static_Test TSS_Test Task_Ex_Test Task_Test Thread_Manager_Test Thread_Mutex_Test Thread_Pool_Reactor_Resume_Test Thread_Pool_Reactor_Test Thread_Pool_Test Time_Service_Test Time_Value_Test Timeprobe_Test Timer_Cancellation_Test Timer_Queue_Reference_Counting_Test Timer_Queue_Test TkReactor_Test Token_Strategy_Test Tokens_Test UPIPE_SAP_Test UUIDTest Unbounded_Set_Test_Ex Upgradable_RW_Test Vector_Test WFMO_Reactor_Test XtReactor_Test
++all: Test_Output MT_Reactor_Upcall_Test ACE_Init_Test ACE_Test ARGV_Test Aio_Platform_Test Arg_Shifter_Test Atomic_Op_Test Auto_IncDec_Test Barrier_Test Basic_Types_Test Bound_Ptr_Test Buffer_Stream_Test Bug_1576_Regression_Test CDR_Array_Test CDR_File_Test CDR_Test Cache_Map_Manager_Test Cached_Accept_Conn_Test Cached_Allocator_Test Cached_Conn_Test Capabilities_Test Codecs_Test Collection_Test Config_Test Conn_Test DLL_Test DLL_Test_Lib DLList_Test Date_Time_Test Dev_Poll_Reactor_Test Dirent_Test Dynamic_Priority_Test Enum_Interfaces_Test Env_Value_Test FIFO_Test FlReactor_Test Framework_Component_DLL Framework_Component_Test Future_Set_Test Future_Test Get_Opt_Test Handle_Set_Test Hash_Map_Bucket_Iterator_Test Hash_Map_Manager_Test High_Res_Timer_Test INET_Addr_Test INET_Addr_Test_IPV6 IOStream_Test Lazy_Map_Manager_Test Log_Msg_Test Logging_Strategy_Test MEM_Stream_Test MM_Shared_Memory_Test MT_Reactor_Timer_Test MT_Ref_Counted_Event_Handler_Test MT_Reference_Counted_Notify_Test MT_SOCK_Test Malloc_Test Map_Manager_Test Map_Test Max_Default_Port_Test Max_Default_Port_Test_IPV6 Mem_Map_Test Message_Block_Test Message_Queue_Notifications_Test Message_Queue_Test Message_Queue_Test_Ex Multicast_Test Multicast_Test_IPV6 Multihomed_INET_Addr_Test Multihomed_INET_Addr_Test_IPV6 Naming_Test New_Fail_Test NonBlocking_Conn_Test Notify_Performance_Test OS_Test Object_Manager_Test Obstack_Test OrdMultiSet_Test Pipe_Test Priority_Buffer_Test Priority_Reactor_Test Priority_Task_Test Process_Manager_Test Process_Mutex_Test Process_Strategy_Test RB_Tree_Test Reactor_Dispatch_Order_Test Reactor_Exceptions_Test Reactor_Notification_Queue_Test Reactor_Notify_Test Reactor_Performance_Test Reactor_Registration_Test Reactor_Timer_Test Reactors_Test Reader_Writer_Test Recursive_Condition_Bug_Test Recursive_Condition_Test Recursive_Mutex_Test Refcounted_Auto_Ptr_Test Reference_Counted_Event_Handler_Test Reverse_Lock_Test SOCK_Connector_Test SOCK_Dgram_Bcast_Test SOCK_Dgram_Test SOCK_Send_Recv_Test SOCK_Send_Recv_Test_IPV6 SOCK_Test SOCK_Test_IPv6 SPIPE_Test SString_Test SV_Shared_Memory_Test Semaphore_Test Service_Config_DLL Service_Config_Test Signal_Test Sigset_Ops_Test Simple_Message_Block_Test Svc_Handler_Test TP_Reactor_Test TSS_Static_Test TSS_Test Task_Ex_Test Task_Test Thread_Manager_Test Thread_Mutex_Test Thread_Pool_Reactor_Resume_Test Thread_Pool_Reactor_Test Thread_Pool_Test Time_Service_Test Time_Value_Test Timeprobe_Test Timer_Cancellation_Test Timer_Queue_Reference_Counting_Test Timer_Queue_Test TkReactor_Test Token_Strategy_Test Tokens_Test UPIPE_SAP_Test UUIDTest Unbounded_Set_Test_Ex Upgradable_RW_Test Vector_Test WFMO_Reactor_Test XtReactor_Test
+ $(KEEP_GOING)@cd RMCast && $(MAKE) -f $(MAKEFILE) $(@)
+ $(KEEP_GOING)@cd SSL && $(MAKE) -f $(MAKEFILE) $(@)
+
diff --git a/devel/ace+tao/files/patch-ag b/devel/ace+tao/files/patch-ag
new file mode 100644
index 000000000000..6e72f41b12bc
--- /dev/null
+++ b/devel/ace+tao/files/patch-ag
@@ -0,0 +1,10 @@
+--- TAO/orbsvcs/tests/Security/GNUmakefile.orig Tue Dec 7 12:10:52 2004
++++ TAO/orbsvcs/tests/Security/GNUmakefile Tue Dec 7 12:11:04 2004
+@@ -24,7 +24,6 @@
+ $(KEEP_GOING)@cd Big_Request && $(MAKE) -f $(MAKEFILE) $(@)
+ $(KEEP_GOING)@cd Callback && $(MAKE) -f $(MAKEFILE) $(@)
+ $(KEEP_GOING)@cd Crash_Test && $(MAKE) -f $(MAKEFILE) $(@)
+- $(KEEP_GOING)@cd MT_IIOP_SSL && $(MAKE) -f $(MAKEFILE) $(@)
+ $(KEEP_GOING)@cd MT_SSLIOP && $(MAKE) -f $(MAKEFILE) $(@)
+ $(KEEP_GOING)@cd Secure_Invocation && $(MAKE) -f $(MAKEFILE) $(@)
+ $(KEEP_GOING)@cd SecurityLevel1 && $(MAKE) -f $(MAKEFILE) $(@)
diff --git a/devel/ace+tao/pkg-plist b/devel/ace+tao/pkg-plist
index b237ce248675..e5f068af1969 100644
--- a/devel/ace+tao/pkg-plist
+++ b/devel/ace+tao/pkg-plist
@@ -4,12 +4,17 @@
%%TAO%%bin/Dump_Schedule
%%TAO%%bin/Event_Logging_Service
%%TAO%%bin/Event_Service
+%%TAO%%bin/FT_ReplicationManager
+%%TAO%%bin/Fault_Detector
+%%TAO%%bin/Fault_Notifier
%%TAO%%bin/IFR_Service
%%TAO%%bin/ImR_Activator
%%TAO%%bin/ImplRepo_Service
%%TAO%%bin/LifeCycle_Service
%%TAO%%bin/LoadManager
%%TAO%%bin/LoadMonitor
+%%TAO%%bin/NT_Naming_Service
+%%TAO%%bin/NT_Notify_Service
%%TAO%%bin/NameService
%%TAO%%bin/Naming_Service
%%TAO%%bin/Notify_Logging_Service
@@ -23,8 +28,9 @@
%%TAO%%bin/catior
%%TAO%%bin/consumer
%%TAO%%bin/ftec
-bin/gperf
-%%TAO%%bin/ior-parser
+%%TAO%%bin/ftrt_eventservice
+%%TAO%%bin/ftrtec_factory_service
+%%TAO%%bin/ftrtec_gateway_service
%%TAO%%bin/nsadd
%%TAO%%bin/nsdel
%%TAO%%bin/nslist
@@ -33,45 +39,46 @@ bin/gperf
%%TAO%%bin/tao_idl
%%TAO%%bin/tao_ifr
%%TAO%%bin/tao_imr
+bin/gperf
include/ace/ACE.cpp
include/ace/ACE.h
-include/ace/ACE.i
+include/ace/ACE.inl
include/ace/ACE_export.h
include/ace/ARGV.cpp
include/ace/ARGV.h
-include/ace/ARGV.i
+include/ace/ARGV.inl
include/ace/ATM_Acceptor.cpp
include/ace/ATM_Acceptor.h
-include/ace/ATM_Acceptor.i
+include/ace/ATM_Acceptor.inl
include/ace/ATM_Addr.cpp
include/ace/ATM_Addr.h
-include/ace/ATM_Addr.i
+include/ace/ATM_Addr.inl
include/ace/ATM_Connector.cpp
include/ace/ATM_Connector.h
-include/ace/ATM_Connector.i
+include/ace/ATM_Connector.inl
include/ace/ATM_Params.cpp
include/ace/ATM_Params.h
-include/ace/ATM_Params.i
+include/ace/ATM_Params.inl
include/ace/ATM_QoS.cpp
include/ace/ATM_QoS.h
-include/ace/ATM_QoS.i
+include/ace/ATM_QoS.inl
include/ace/ATM_Stream.cpp
include/ace/ATM_Stream.h
-include/ace/ATM_Stream.i
+include/ace/ATM_Stream.inl
include/ace/Acceptor.cpp
include/ace/Acceptor.h
include/ace/Activation_Queue.cpp
include/ace/Activation_Queue.h
-include/ace/Activation_Queue.i
+include/ace/Activation_Queue.inl
include/ace/Active_Map_Manager.cpp
include/ace/Active_Map_Manager.h
-include/ace/Active_Map_Manager.i
+include/ace/Active_Map_Manager.inl
include/ace/Active_Map_Manager_T.cpp
include/ace/Active_Map_Manager_T.h
-include/ace/Active_Map_Manager_T.i
+include/ace/Active_Map_Manager_T.inl
include/ace/Addr.cpp
include/ace/Addr.h
-include/ace/Addr.i
+include/ace/Addr.inl
include/ace/Arg_Shifter.cpp
include/ace/Arg_Shifter.h
include/ace/Argv_Type_Converter.cpp
@@ -89,24 +96,27 @@ include/ace/Asynch_IO.cpp
include/ace/Asynch_IO.h
include/ace/Asynch_IO_Impl.cpp
include/ace/Asynch_IO_Impl.h
-include/ace/Asynch_IO_Impl.i
+include/ace/Asynch_IO_Impl.inl
include/ace/Asynch_Pseudo_Task.cpp
include/ace/Asynch_Pseudo_Task.h
include/ace/Atomic_Op.cpp
include/ace/Atomic_Op.h
-include/ace/Atomic_Op.i
+include/ace/Atomic_Op.inl
include/ace/Atomic_Op_T.cpp
include/ace/Atomic_Op_T.h
-include/ace/Atomic_Op_T.i
+include/ace/Atomic_Op_T.inl
include/ace/Auto_Event.cpp
include/ace/Auto_Event.h
include/ace/Auto_Event.inl
+include/ace/Auto_Functor.cpp
+include/ace/Auto_Functor.h
+include/ace/Auto_Functor.inl
include/ace/Auto_IncDec_T.cpp
include/ace/Auto_IncDec_T.h
-include/ace/Auto_IncDec_T.i
+include/ace/Auto_IncDec_T.inl
include/ace/Auto_Ptr.cpp
include/ace/Auto_Ptr.h
-include/ace/Auto_Ptr.i
+include/ace/Auto_Ptr.inl
include/ace/Barrier.cpp
include/ace/Barrier.h
include/ace/Barrier.inl
@@ -117,21 +127,21 @@ include/ace/Based_Pointer_Repository.cpp
include/ace/Based_Pointer_Repository.h
include/ace/Based_Pointer_T.cpp
include/ace/Based_Pointer_T.h
-include/ace/Based_Pointer_T.i
+include/ace/Based_Pointer_T.inl
include/ace/Basic_Stats.cpp
include/ace/Basic_Stats.h
include/ace/Basic_Stats.inl
include/ace/Basic_Types.cpp
include/ace/Basic_Types.h
-include/ace/Basic_Types.i
+include/ace/Basic_Types.inl
include/ace/Bound_Ptr.h
-include/ace/Bound_Ptr.i
+include/ace/Bound_Ptr.inl
include/ace/CDR_Base.cpp
include/ace/CDR_Base.h
include/ace/CDR_Base.inl
include/ace/CDR_Stream.cpp
include/ace/CDR_Stream.h
-include/ace/CDR_Stream.i
+include/ace/CDR_Stream.inl
include/ace/CE_Screen_Output.cpp
include/ace/CE_Screen_Output.h
include/ace/CLASSIX/CLASSIX_Addr.cpp
@@ -185,17 +195,17 @@ include/ace/CLASSIX/CLASSIX_Stream.i
include/ace/CORBA_macros.h
include/ace/Cache_Map_Manager_T.cpp
include/ace/Cache_Map_Manager_T.h
-include/ace/Cache_Map_Manager_T.i
+include/ace/Cache_Map_Manager_T.inl
include/ace/Cached_Connect_Strategy_T.cpp
include/ace/Cached_Connect_Strategy_T.h
include/ace/Caching_Strategies_T.cpp
include/ace/Caching_Strategies_T.h
-include/ace/Caching_Strategies_T.i
+include/ace/Caching_Strategies_T.inl
include/ace/Caching_Utility_T.cpp
include/ace/Caching_Utility_T.h
include/ace/Capabilities.cpp
include/ace/Capabilities.h
-include/ace/Capabilities.i
+include/ace/Capabilities.inl
include/ace/Cleanup.cpp
include/ace/Cleanup.h
include/ace/Cleanup.inl
@@ -209,9 +219,9 @@ include/ace/Codeset_Registry.cpp
include/ace/Codeset_Registry.h
include/ace/Codeset_Registry.inl
include/ace/Codeset_Registry_db.cpp
+include/ace/Codeset_Symbols.h
include/ace/Condition_Recursive_Thread_Mutex.cpp
include/ace/Condition_Recursive_Thread_Mutex.h
-include/ace/Condition_Recursive_Thread_Mutex.inl
include/ace/Condition_T.cpp
include/ace/Condition_T.h
include/ace/Condition_T.inl
@@ -229,38 +239,38 @@ include/ace/Connector.h
include/ace/Container_Instantiations.cpp
include/ace/Containers.cpp
include/ace/Containers.h
-include/ace/Containers.i
+include/ace/Containers.inl
include/ace/Containers_T.cpp
include/ace/Containers_T.h
-include/ace/Containers_T.i
+include/ace/Containers_T.inl
include/ace/Copy_Disabled.cpp
include/ace/Copy_Disabled.h
include/ace/DEV.cpp
include/ace/DEV.h
-include/ace/DEV.i
+include/ace/DEV.inl
include/ace/DEV_Addr.cpp
include/ace/DEV_Addr.h
-include/ace/DEV_Addr.i
+include/ace/DEV_Addr.inl
include/ace/DEV_Connector.cpp
include/ace/DEV_Connector.h
-include/ace/DEV_Connector.i
+include/ace/DEV_Connector.inl
include/ace/DEV_IO.cpp
include/ace/DEV_IO.h
-include/ace/DEV_IO.i
+include/ace/DEV_IO.inl
include/ace/DLL.cpp
include/ace/DLL.h
include/ace/DLL_Manager.cpp
include/ace/DLL_Manager.h
include/ace/Date_Time.cpp
include/ace/Date_Time.h
-include/ace/Date_Time.i
+include/ace/Date_Time.inl
include/ace/Default_Constants.h
include/ace/Dev_Poll_Reactor.cpp
include/ace/Dev_Poll_Reactor.h
include/ace/Dev_Poll_Reactor.inl
include/ace/Dirent.cpp
include/ace/Dirent.h
-include/ace/Dirent.i
+include/ace/Dirent.inl
include/ace/Dirent_Selector.cpp
include/ace/Dirent_Selector.h
include/ace/Dirent_Selector.inl
@@ -270,53 +280,52 @@ include/ace/Dump_T.cpp
include/ace/Dump_T.h
include/ace/Dynamic.cpp
include/ace/Dynamic.h
-include/ace/Dynamic.i
+include/ace/Dynamic.inl
include/ace/Dynamic_Service.cpp
include/ace/Dynamic_Service.h
-include/ace/Dynamic_Service.i
+include/ace/Dynamic_Service.inl
include/ace/Dynamic_Service_Base.cpp
include/ace/Dynamic_Service_Base.h
-include/ace/Dynamic_Service_Base.i
include/ace/Env_Value_T.cpp
include/ace/Env_Value_T.h
-include/ace/Env_Value_T.i
+include/ace/Env_Value_T.inl
include/ace/Event.cpp
include/ace/Event.h
include/ace/Event.inl
include/ace/Event_Handler.cpp
include/ace/Event_Handler.h
-include/ace/Event_Handler.i
+include/ace/Event_Handler.inl
include/ace/Event_Handler_T.cpp
include/ace/Event_Handler_T.h
-include/ace/Event_Handler_T.i
+include/ace/Event_Handler_T.inl
include/ace/Exception_Macros.h
include/ace/FIFO.cpp
include/ace/FIFO.h
-include/ace/FIFO.i
+include/ace/FIFO.inl
include/ace/FIFO_Recv.cpp
include/ace/FIFO_Recv.h
-include/ace/FIFO_Recv.i
+include/ace/FIFO_Recv.inl
include/ace/FIFO_Recv_Msg.cpp
include/ace/FIFO_Recv_Msg.h
-include/ace/FIFO_Recv_Msg.i
+include/ace/FIFO_Recv_Msg.inl
include/ace/FIFO_Send.cpp
include/ace/FIFO_Send.h
-include/ace/FIFO_Send.i
+include/ace/FIFO_Send.inl
include/ace/FIFO_Send_Msg.cpp
include/ace/FIFO_Send_Msg.h
-include/ace/FIFO_Send_Msg.i
+include/ace/FIFO_Send_Msg.inl
include/ace/FILE.cpp
include/ace/FILE.h
-include/ace/FILE.i
+include/ace/FILE.inl
include/ace/FILE_Addr.cpp
include/ace/FILE_Addr.h
-include/ace/FILE_Addr.i
+include/ace/FILE_Addr.inl
include/ace/FILE_Connector.cpp
include/ace/FILE_Connector.h
-include/ace/FILE_Connector.i
+include/ace/FILE_Connector.inl
include/ace/FILE_IO.cpp
include/ace/FILE_IO.h
-include/ace/FILE_IO.i
+include/ace/FILE_IO.inl
include/ace/File_Lock.cpp
include/ace/File_Lock.h
include/ace/File_Lock.inl
@@ -324,83 +333,79 @@ include/ace/Filecache.cpp
include/ace/Filecache.h
include/ace/FlReactor.cpp
include/ace/FlReactor.h
-include/ace/FlReactor.i
include/ace/Flag_Manip.cpp
include/ace/Flag_Manip.h
-include/ace/Flag_Manip.i
+include/ace/Flag_Manip.inl
include/ace/Framework_Component.cpp
include/ace/Framework_Component.h
include/ace/Framework_Component.inl
include/ace/Framework_Component_T.cpp
include/ace/Framework_Component_T.h
-include/ace/Framework_Component_T.inl
include/ace/Free_List.cpp
include/ace/Free_List.h
-include/ace/Free_List.i
+include/ace/Free_List.inl
+include/ace/Functor.cpp
+include/ace/Functor.h
+include/ace/Functor.inl
include/ace/Functor_String.cpp
include/ace/Functor_String.h
include/ace/Functor_String.inl
-include/ace/Functor.cpp
-include/ace/Functor.h
-include/ace/Functor.i
include/ace/Functor_T.cpp
include/ace/Functor_T.h
-include/ace/Functor_T.i
+include/ace/Functor_T.inl
include/ace/Future.cpp
include/ace/Future.h
include/ace/Future_Set.cpp
include/ace/Future_Set.h
include/ace/Get_Opt.cpp
include/ace/Get_Opt.h
-include/ace/Get_Opt.i
+include/ace/Get_Opt.inl
include/ace/Global_Macros.h
include/ace/Guard_T.cpp
include/ace/Guard_T.h
include/ace/Guard_T.inl
include/ace/Handle_Gobbler.h
-include/ace/Handle_Gobbler.i
+include/ace/Handle_Gobbler.inl
include/ace/Handle_Ops.cpp
include/ace/Handle_Ops.h
-include/ace/Handle_Ops.i
include/ace/Handle_Set.cpp
include/ace/Handle_Set.h
-include/ace/Handle_Set.i
+include/ace/Handle_Set.inl
include/ace/Hash_Cache_Map_Manager_T.cpp
include/ace/Hash_Cache_Map_Manager_T.h
-include/ace/Hash_Cache_Map_Manager_T.i
+include/ace/Hash_Cache_Map_Manager_T.inl
include/ace/Hash_Map_Manager.cpp
include/ace/Hash_Map_Manager.h
include/ace/Hash_Map_Manager_T.cpp
include/ace/Hash_Map_Manager_T.h
-include/ace/Hash_Map_Manager_T.i
+include/ace/Hash_Map_Manager_T.inl
include/ace/Hash_Map_With_Allocator_T.cpp
include/ace/Hash_Map_With_Allocator_T.h
-include/ace/Hash_Map_With_Allocator_T.i
+include/ace/Hash_Map_With_Allocator_T.inl
include/ace/Hashable.cpp
include/ace/Hashable.h
include/ace/Hashable.inl
include/ace/High_Res_Timer.cpp
include/ace/High_Res_Timer.h
-include/ace/High_Res_Timer.i
+include/ace/High_Res_Timer.inl
include/ace/INET_Addr.cpp
include/ace/INET_Addr.h
-include/ace/INET_Addr.i
+include/ace/INET_Addr.inl
include/ace/IOStream.cpp
include/ace/IOStream.h
include/ace/IOStream_T.cpp
include/ace/IOStream_T.h
-include/ace/IOStream_T.i
+include/ace/IOStream_T.inl
include/ace/IO_Cntl_Msg.cpp
include/ace/IO_Cntl_Msg.h
include/ace/IO_SAP.cpp
include/ace/IO_SAP.h
-include/ace/IO_SAP.i
+include/ace/IO_SAP.inl
include/ace/IPC_SAP.cpp
include/ace/IPC_SAP.h
-include/ace/IPC_SAP.i
+include/ace/IPC_SAP.inl
include/ace/Init_ACE.cpp
include/ace/Init_ACE.h
-include/ace/Init_ACE.i
include/ace/Intrusive_List.cpp
include/ace/Intrusive_List.h
include/ace/Intrusive_List.inl
@@ -411,31 +416,30 @@ include/ace/LOCK_SOCK_Acceptor.cpp
include/ace/LOCK_SOCK_Acceptor.h
include/ace/LSOCK.cpp
include/ace/LSOCK.h
-include/ace/LSOCK.i
+include/ace/LSOCK.inl
include/ace/LSOCK_Acceptor.cpp
include/ace/LSOCK_Acceptor.h
include/ace/LSOCK_CODgram.cpp
include/ace/LSOCK_CODgram.h
-include/ace/LSOCK_CODgram.i
+include/ace/LSOCK_CODgram.inl
include/ace/LSOCK_Connector.cpp
include/ace/LSOCK_Connector.h
-include/ace/LSOCK_Connector.i
+include/ace/LSOCK_Connector.inl
include/ace/LSOCK_Dgram.cpp
include/ace/LSOCK_Dgram.h
-include/ace/LSOCK_Dgram.i
+include/ace/LSOCK_Dgram.inl
include/ace/LSOCK_Stream.cpp
include/ace/LSOCK_Stream.h
-include/ace/LSOCK_Stream.i
+include/ace/LSOCK_Stream.inl
include/ace/Lib_Find.cpp
include/ace/Lib_Find.h
-include/ace/Lib_Find.i
include/ace/Local_Name_Space.cpp
include/ace/Local_Name_Space.h
include/ace/Local_Name_Space_T.cpp
include/ace/Local_Name_Space_T.h
include/ace/Local_Tokens.cpp
include/ace/Local_Tokens.h
-include/ace/Local_Tokens.i
+include/ace/Local_Tokens.inl
include/ace/Lock.cpp
include/ace/Lock.h
include/ace/Lock.inl
@@ -457,41 +461,41 @@ include/ace/Log_Msg_UNIX_Syslog.h
include/ace/Log_Priority.h
include/ace/Log_Record.cpp
include/ace/Log_Record.h
-include/ace/Log_Record.i
+include/ace/Log_Record.inl
include/ace/Logging_Strategy.cpp
include/ace/Logging_Strategy.h
include/ace/MEM_Acceptor.cpp
include/ace/MEM_Acceptor.h
-include/ace/MEM_Acceptor.i
+include/ace/MEM_Acceptor.inl
include/ace/MEM_Addr.cpp
include/ace/MEM_Addr.h
-include/ace/MEM_Addr.i
+include/ace/MEM_Addr.inl
include/ace/MEM_Connector.cpp
include/ace/MEM_Connector.h
-include/ace/MEM_Connector.i
+include/ace/MEM_Connector.inl
include/ace/MEM_IO.cpp
include/ace/MEM_IO.h
-include/ace/MEM_IO.i
+include/ace/MEM_IO.inl
include/ace/MEM_SAP.cpp
include/ace/MEM_SAP.h
-include/ace/MEM_SAP.i
+include/ace/MEM_SAP.inl
include/ace/MEM_Stream.cpp
include/ace/MEM_Stream.h
-include/ace/MEM_Stream.i
+include/ace/MEM_Stream.inl
include/ace/Malloc.cpp
include/ace/Malloc.h
-include/ace/Malloc.i
+include/ace/Malloc.inl
include/ace/Malloc_Allocator.cpp
include/ace/Malloc_Allocator.h
-include/ace/Malloc_Allocator.i
+include/ace/Malloc_Allocator.inl
include/ace/Malloc_Base.h
include/ace/Malloc_Instantiations.cpp
include/ace/Malloc_T.cpp
include/ace/Malloc_T.h
-include/ace/Malloc_T.i
+include/ace/Malloc_T.inl
include/ace/Managed_Object.cpp
include/ace/Managed_Object.h
-include/ace/Managed_Object.i
+include/ace/Managed_Object.inl
include/ace/Manual_Event.cpp
include/ace/Manual_Event.h
include/ace/Manual_Event.inl
@@ -499,56 +503,55 @@ include/ace/Map.cpp
include/ace/Map.h
include/ace/Map_Manager.cpp
include/ace/Map_Manager.h
-include/ace/Map_Manager.i
+include/ace/Map_Manager.inl
include/ace/Map_T.cpp
include/ace/Map_T.h
-include/ace/Map_T.i
+include/ace/Map_T.inl
include/ace/Mem_Map.cpp
include/ace/Mem_Map.h
-include/ace/Mem_Map.i
+include/ace/Mem_Map.inl
include/ace/Memory_Pool.cpp
include/ace/Memory_Pool.h
-include/ace/Memory_Pool.i
+include/ace/Memory_Pool.inl
include/ace/Message_Block.cpp
include/ace/Message_Block.h
-include/ace/Message_Block.i
+include/ace/Message_Block.inl
include/ace/Message_Block_T.cpp
include/ace/Message_Block_T.h
-include/ace/Message_Block_T.i
+include/ace/Message_Block_T.inl
include/ace/Message_Queue.cpp
include/ace/Message_Queue.h
-include/ace/Message_Queue.i
+include/ace/Message_Queue.inl
include/ace/Message_Queue_T.cpp
include/ace/Message_Queue_T.h
-include/ace/Message_Queue_T.i
+include/ace/Message_Queue_T.inl
include/ace/Method_Object.h
include/ace/Method_Request.cpp
include/ace/Method_Request.h
include/ace/Metrics_Cache.cpp
include/ace/Metrics_Cache.h
-include/ace/Metrics_Cache.i
include/ace/Metrics_Cache_T.cpp
include/ace/Metrics_Cache_T.h
-include/ace/Metrics_Cache_T.i
+include/ace/Metrics_Cache_T.inl
include/ace/Min_Max.h
include/ace/Module.cpp
include/ace/Module.h
-include/ace/Module.i
+include/ace/Module.inl
include/ace/Msg_WFMO_Reactor.cpp
include/ace/Msg_WFMO_Reactor.h
-include/ace/Msg_WFMO_Reactor.i
+include/ace/Msg_WFMO_Reactor.inl
include/ace/Multihomed_INET_Addr.cpp
include/ace/Multihomed_INET_Addr.h
-include/ace/Multihomed_INET_Addr.i
+include/ace/Multihomed_INET_Addr.inl
include/ace/Multiplexor.cpp
include/ace/Multiplexor.h
-include/ace/Multiplexor.i
+include/ace/Multiplexor.inl
include/ace/Mutex.cpp
include/ace/Mutex.h
include/ace/Mutex.inl
include/ace/NT_Service.cpp
include/ace/NT_Service.h
-include/ace/NT_Service.i
+include/ace/NT_Service.inl
include/ace/Name_Proxy.cpp
include/ace/Name_Proxy.h
include/ace/Name_Request_Reply.cpp
@@ -568,14 +571,12 @@ include/ace/Null_Mutex.h
include/ace/Null_Semaphore.h
include/ace/OS.cpp
include/ace/OS.h
-include/ace/OS.i
+include/ace/OS.inl
include/ace/OS_Dirent.cpp
include/ace/OS_Dirent.h
-include/ace/OS_Dirent.inl
include/ace/OS_Errno.cpp
include/ace/OS_Errno.h
include/ace/OS_Errno.inl
-include/ace/OS_Export.h
include/ace/OS_Log_Msg_Attributes.cpp
include/ace/OS_Log_Msg_Attributes.h
include/ace/OS_Log_Msg_Attributes.inl
@@ -689,58 +690,55 @@ include/ace/OS_TLI.h
include/ace/OS_TLI.inl
include/ace/OS_Thread_Adapter.cpp
include/ace/OS_Thread_Adapter.h
-include/ace/OS_Thread_Adapter.inl
include/ace/OS_main.cpp
include/ace/OS_main.h
include/ace/Obchunk.cpp
include/ace/Obchunk.h
-include/ace/Obchunk.i
+include/ace/Obchunk.inl
include/ace/Object_Manager.cpp
include/ace/Object_Manager.h
-include/ace/Object_Manager.i
+include/ace/Object_Manager.inl
include/ace/Object_Manager_Base.cpp
include/ace/Object_Manager_Base.h
-include/ace/Object_Manager_Base.inl
include/ace/Obstack.cpp
include/ace/Obstack.h
include/ace/Obstack_T.cpp
include/ace/Obstack_T.h
-include/ace/Obstack_T.i
+include/ace/Obstack_T.inl
include/ace/PI_Malloc.cpp
include/ace/PI_Malloc.h
-include/ace/PI_Malloc.i
+include/ace/PI_Malloc.inl
include/ace/POSIX_Asynch_IO.cpp
include/ace/POSIX_Asynch_IO.h
-include/ace/POSIX_Asynch_IO.i
include/ace/POSIX_CB_Proactor.cpp
include/ace/POSIX_CB_Proactor.h
-include/ace/POSIX_CB_Proactor.i
+include/ace/POSIX_CB_Proactor.inl
include/ace/POSIX_Proactor.cpp
include/ace/POSIX_Proactor.h
-include/ace/POSIX_Proactor.i
+include/ace/POSIX_Proactor.inl
include/ace/Pair.cpp
include/ace/Pair.h
include/ace/Pair_T.cpp
include/ace/Pair_T.h
-include/ace/Pair_T.i
+include/ace/Pair_T.inl
include/ace/Parse_Node.cpp
include/ace/Parse_Node.h
-include/ace/Parse_Node.i
+include/ace/Parse_Node.inl
include/ace/Pipe.cpp
include/ace/Pipe.h
-include/ace/Pipe.i
+include/ace/Pipe.inl
include/ace/Priority_Reactor.cpp
include/ace/Priority_Reactor.h
include/ace/Proactor.cpp
include/ace/Proactor.h
-include/ace/Proactor.i
+include/ace/Proactor.inl
include/ace/Proactor_Impl.h
include/ace/Process.cpp
include/ace/Process.h
-include/ace/Process.i
+include/ace/Process.inl
include/ace/Process_Manager.cpp
include/ace/Process_Manager.h
-include/ace/Process_Manager.i
+include/ace/Process_Manager.inl
include/ace/Process_Mutex.cpp
include/ace/Process_Mutex.h
include/ace/Process_Mutex.inl
@@ -749,7 +747,7 @@ include/ace/Process_Semaphore.h
include/ace/Process_Semaphore.inl
include/ace/Profile_Timer.cpp
include/ace/Profile_Timer.h
-include/ace/Profile_Timer.i
+include/ace/Profile_Timer.inl
include/ace/QoS/ACE_QoS_Export.h
include/ace/QoS/QoS_Decorator.cpp
include/ace/QoS/QoS_Decorator.h
@@ -768,7 +766,7 @@ include/ace/QtReactor.cpp
include/ace/QtReactor.h
include/ace/RB_Tree.cpp
include/ace/RB_Tree.h
-include/ace/RB_Tree.i
+include/ace/RB_Tree.inl
include/ace/RMCast/RMCast.cpp
include/ace/RMCast/RMCast.h
include/ace/RMCast/RMCast.i
@@ -856,7 +854,7 @@ include/ace/RW_Thread_Mutex.h
include/ace/RW_Thread_Mutex.inl
include/ace/Reactor.cpp
include/ace/Reactor.h
-include/ace/Reactor.i
+include/ace/Reactor.inl
include/ace/Reactor_Impl.h
include/ace/Reactor_Notification_Strategy.cpp
include/ace/Reactor_Notification_Strategy.h
@@ -864,7 +862,7 @@ include/ace/Reactor_Notification_Strategy.inl
include/ace/Reactor_Timer_Interface.h
include/ace/Read_Buffer.cpp
include/ace/Read_Buffer.h
-include/ace/Read_Buffer.i
+include/ace/Read_Buffer.inl
include/ace/Recursive_Thread_Mutex.cpp
include/ace/Recursive_Thread_Mutex.h
include/ace/Recursive_Thread_Mutex.inl
@@ -875,7 +873,7 @@ include/ace/Refcountable.cpp
include/ace/Refcountable.h
include/ace/Refcountable.inl
include/ace/Refcounted_Auto_Ptr.h
-include/ace/Refcounted_Auto_Ptr.i
+include/ace/Refcounted_Auto_Ptr.inl
include/ace/Registry.cpp
include/ace/Registry.h
include/ace/Registry_Name_Space.cpp
@@ -884,60 +882,60 @@ include/ace/Remote_Name_Space.cpp
include/ace/Remote_Name_Space.h
include/ace/Remote_Tokens.cpp
include/ace/Remote_Tokens.h
-include/ace/Remote_Tokens.i
+include/ace/Remote_Tokens.inl
include/ace/Reverse_Lock_T.cpp
include/ace/Reverse_Lock_T.h
include/ace/Reverse_Lock_T.inl
include/ace/SOCK.cpp
include/ace/SOCK.h
-include/ace/SOCK.i
+include/ace/SOCK.inl
include/ace/SOCK_Acceptor.cpp
include/ace/SOCK_Acceptor.h
-include/ace/SOCK_Acceptor.i
+include/ace/SOCK_Acceptor.inl
include/ace/SOCK_CODgram.cpp
include/ace/SOCK_CODgram.h
-include/ace/SOCK_CODgram.i
+include/ace/SOCK_CODgram.inl
include/ace/SOCK_Connector.cpp
include/ace/SOCK_Connector.h
-include/ace/SOCK_Connector.i
+include/ace/SOCK_Connector.inl
include/ace/SOCK_Dgram.cpp
include/ace/SOCK_Dgram.h
-include/ace/SOCK_Dgram.i
+include/ace/SOCK_Dgram.inl
include/ace/SOCK_Dgram_Bcast.cpp
include/ace/SOCK_Dgram_Bcast.h
-include/ace/SOCK_Dgram_Bcast.i
+include/ace/SOCK_Dgram_Bcast.inl
include/ace/SOCK_Dgram_Mcast.cpp
include/ace/SOCK_Dgram_Mcast.h
-include/ace/SOCK_Dgram_Mcast.i
+include/ace/SOCK_Dgram_Mcast.inl
include/ace/SOCK_IO.cpp
include/ace/SOCK_IO.h
-include/ace/SOCK_IO.i
+include/ace/SOCK_IO.inl
include/ace/SOCK_SEQPACK_Acceptor.cpp
include/ace/SOCK_SEQPACK_Acceptor.h
-include/ace/SOCK_SEQPACK_Acceptor.i
+include/ace/SOCK_SEQPACK_Acceptor.inl
include/ace/SOCK_SEQPACK_Association.cpp
include/ace/SOCK_SEQPACK_Association.h
-include/ace/SOCK_SEQPACK_Association.i
+include/ace/SOCK_SEQPACK_Association.inl
include/ace/SOCK_SEQPACK_Connector.cpp
include/ace/SOCK_SEQPACK_Connector.h
-include/ace/SOCK_SEQPACK_Connector.i
+include/ace/SOCK_SEQPACK_Connector.inl
include/ace/SOCK_Stream.cpp
include/ace/SOCK_Stream.h
-include/ace/SOCK_Stream.i
+include/ace/SOCK_Stream.inl
include/ace/SPIPE.cpp
include/ace/SPIPE.h
-include/ace/SPIPE.i
+include/ace/SPIPE.inl
include/ace/SPIPE_Acceptor.cpp
include/ace/SPIPE_Acceptor.h
include/ace/SPIPE_Addr.cpp
include/ace/SPIPE_Addr.h
-include/ace/SPIPE_Addr.i
+include/ace/SPIPE_Addr.inl
include/ace/SPIPE_Connector.cpp
include/ace/SPIPE_Connector.h
-include/ace/SPIPE_Connector.i
+include/ace/SPIPE_Connector.inl
include/ace/SPIPE_Stream.cpp
include/ace/SPIPE_Stream.h
-include/ace/SPIPE_Stream.i
+include/ace/SPIPE_Stream.inl
include/ace/SSL/SSL_Asynch_BIO.cpp
include/ace/SSL/SSL_Asynch_BIO.h
include/ace/SSL/SSL_Asynch_Stream.cpp
@@ -961,96 +959,95 @@ include/ace/SSL/SSL_SOCK_Stream.i
include/ace/SSL/sslconf.h
include/ace/SString.cpp
include/ace/SString.h
-include/ace/SString.i
+include/ace/SString.inl
include/ace/SStringfwd.h
include/ace/SUN_Proactor.cpp
include/ace/SUN_Proactor.h
-include/ace/SUN_Proactor.i
+include/ace/SUN_Proactor.inl
include/ace/SV_Message.cpp
include/ace/SV_Message.h
-include/ace/SV_Message.i
+include/ace/SV_Message.inl
include/ace/SV_Message_Queue.cpp
include/ace/SV_Message_Queue.h
-include/ace/SV_Message_Queue.i
+include/ace/SV_Message_Queue.inl
include/ace/SV_Semaphore_Complex.cpp
include/ace/SV_Semaphore_Complex.h
-include/ace/SV_Semaphore_Complex.i
+include/ace/SV_Semaphore_Complex.inl
include/ace/SV_Semaphore_Simple.cpp
include/ace/SV_Semaphore_Simple.h
-include/ace/SV_Semaphore_Simple.i
+include/ace/SV_Semaphore_Simple.inl
include/ace/SV_Shared_Memory.cpp
include/ace/SV_Shared_Memory.h
-include/ace/SV_Shared_Memory.i
+include/ace/SV_Shared_Memory.inl
include/ace/Sample_History.cpp
include/ace/Sample_History.h
include/ace/Sample_History.inl
include/ace/Sched_Params.cpp
include/ace/Sched_Params.h
-include/ace/Sched_Params.i
+include/ace/Sched_Params.inl
include/ace/Select_Reactor.cpp
include/ace/Select_Reactor.h
include/ace/Select_Reactor_Base.cpp
include/ace/Select_Reactor_Base.h
-include/ace/Select_Reactor_Base.i
+include/ace/Select_Reactor_Base.inl
include/ace/Select_Reactor_T.cpp
include/ace/Select_Reactor_T.h
-include/ace/Select_Reactor_T.i
+include/ace/Select_Reactor_T.inl
include/ace/Semaphore.cpp
include/ace/Semaphore.h
include/ace/Semaphore.inl
include/ace/Service_Config.cpp
include/ace/Service_Config.h
-include/ace/Service_Config.i
+include/ace/Service_Config.inl
include/ace/Service_Manager.cpp
include/ace/Service_Manager.h
-include/ace/Service_Manager.i
+include/ace/Service_Manager.inl
include/ace/Service_Object.cpp
include/ace/Service_Object.h
-include/ace/Service_Object.i
+include/ace/Service_Object.inl
include/ace/Service_Repository.cpp
include/ace/Service_Repository.h
-include/ace/Service_Repository.i
+include/ace/Service_Repository.inl
include/ace/Service_Templates.cpp
include/ace/Service_Templates.h
include/ace/Service_Types.cpp
include/ace/Service_Types.h
-include/ace/Service_Types.i
+include/ace/Service_Types.inl
include/ace/Shared_Memory.cpp
include/ace/Shared_Memory.h
include/ace/Shared_Memory_MM.cpp
include/ace/Shared_Memory_MM.h
-include/ace/Shared_Memory_MM.i
+include/ace/Shared_Memory_MM.inl
include/ace/Shared_Memory_SV.cpp
include/ace/Shared_Memory_SV.h
-include/ace/Shared_Memory_SV.i
+include/ace/Shared_Memory_SV.inl
include/ace/Shared_Object.cpp
include/ace/Shared_Object.h
-include/ace/Shared_Object.i
+include/ace/Shared_Object.inl
include/ace/Signal.cpp
include/ace/Signal.h
-include/ace/Signal.i
+include/ace/Signal.inl
include/ace/Singleton.cpp
include/ace/Singleton.h
-include/ace/Singleton.i
+include/ace/Singleton.inl
include/ace/Sock_Connect.cpp
include/ace/Sock_Connect.h
-include/ace/Sock_Connect.i
include/ace/Static_Object_Lock.h
include/ace/Stats.cpp
include/ace/Stats.h
-include/ace/Stats.i
+include/ace/Stats.inl
include/ace/Strategies.h
include/ace/Strategies_T.cpp
include/ace/Strategies_T.h
-include/ace/Strategies_T.i
+include/ace/Strategies_T.inl
include/ace/Stream.cpp
include/ace/Stream.h
-include/ace/Stream.i
+include/ace/Stream.inl
include/ace/Stream_Modules.cpp
include/ace/Stream_Modules.h
include/ace/String_Base.cpp
include/ace/String_Base.h
-include/ace/String_Base.i
+include/ace/String_Base.inl
include/ace/String_Base_Const.cpp
include/ace/String_Base_Const.h
include/ace/Svc_Conf.h
@@ -1066,32 +1063,30 @@ include/ace/Swap.h
include/ace/Swap.inl
include/ace/Synch.cpp
include/ace/Synch.h
-include/ace/Synch.i
include/ace/Synch_Options.cpp
include/ace/Synch_Options.h
-include/ace/Synch_Options.i
+include/ace/Synch_Options.inl
include/ace/Synch_T.cpp
include/ace/Synch_T.h
-include/ace/Synch_T.i
include/ace/Synch_Traits.h
include/ace/System_Time.cpp
include/ace/System_Time.h
include/ace/TLI.cpp
include/ace/TLI.h
-include/ace/TLI.i
+include/ace/TLI.inl
include/ace/TLI_Acceptor.cpp
include/ace/TLI_Acceptor.h
include/ace/TLI_Connector.cpp
include/ace/TLI_Connector.h
-include/ace/TLI_Connector.i
+include/ace/TLI_Connector.inl
include/ace/TLI_Stream.cpp
include/ace/TLI_Stream.h
-include/ace/TLI_Stream.i
+include/ace/TLI_Stream.inl
include/ace/TMCast/Group.cpp
include/ace/TMCast/Protocol.cpp
include/ace/TP_Reactor.cpp
include/ace/TP_Reactor.h
-include/ace/TP_Reactor.i
+include/ace/TP_Reactor.inl
include/ace/TSS_Adapter.cpp
include/ace/TSS_Adapter.h
include/ace/TSS_Adapter.inl
@@ -1102,20 +1097,19 @@ include/ace/TTY_IO.cpp
include/ace/TTY_IO.h
include/ace/Task.cpp
include/ace/Task.h
-include/ace/Task.i
+include/ace/Task.inl
include/ace/Task_Ex_T.cpp
include/ace/Task_Ex_T.h
-include/ace/Task_Ex_T.i
+include/ace/Task_Ex_T.inl
include/ace/Task_T.cpp
include/ace/Task_T.h
-include/ace/Task_T.i
+include/ace/Task_T.inl
include/ace/Template_Instantiations.cpp
include/ace/Test_and_Set.cpp
include/ace/Test_and_Set.h
-include/ace/Test_and_Set.i
include/ace/Thread.cpp
include/ace/Thread.h
-include/ace/Thread.i
+include/ace/Thread.inl
include/ace/Thread_Adapter.cpp
include/ace/Thread_Adapter.h
include/ace/Thread_Adapter.inl
@@ -1128,7 +1122,7 @@ include/ace/Thread_Hook.cpp
include/ace/Thread_Hook.h
include/ace/Thread_Manager.cpp
include/ace/Thread_Manager.h
-include/ace/Thread_Manager.i
+include/ace/Thread_Manager.inl
include/ace/Thread_Mutex.cpp
include/ace/Thread_Mutex.h
include/ace/Thread_Mutex.inl
@@ -1142,7 +1136,7 @@ include/ace/Time_Value.h
include/ace/Time_Value.inl
include/ace/Timeprobe.cpp
include/ace/Timeprobe.h
-include/ace/Timeprobe.i
+include/ace/Timeprobe.inl
include/ace/Timeprobe_T.cpp
include/ace/Timeprobe_T.h
include/ace/Timer_Hash.cpp
@@ -1161,10 +1155,10 @@ include/ace/Timer_Queue.cpp
include/ace/Timer_Queue.h
include/ace/Timer_Queue_Adapters.cpp
include/ace/Timer_Queue_Adapters.h
-include/ace/Timer_Queue_Adapters.i
+include/ace/Timer_Queue_Adapters.inl
include/ace/Timer_Queue_T.cpp
include/ace/Timer_Queue_T.h
-include/ace/Timer_Queue_T.i
+include/ace/Timer_Queue_T.inl
include/ace/Timer_Queuefwd.h
include/ace/Timer_Wheel.cpp
include/ace/Timer_Wheel.h
@@ -1174,39 +1168,39 @@ include/ace/TkReactor.cpp
include/ace/TkReactor.h
include/ace/Token.cpp
include/ace/Token.h
-include/ace/Token.i
+include/ace/Token.inl
include/ace/Token_Collection.cpp
include/ace/Token_Collection.h
-include/ace/Token_Collection.i
+include/ace/Token_Collection.inl
include/ace/Token_Invariants.cpp
include/ace/Token_Invariants.h
include/ace/Token_Manager.cpp
include/ace/Token_Manager.h
-include/ace/Token_Manager.i
+include/ace/Token_Manager.inl
include/ace/Token_Request_Reply.cpp
include/ace/Token_Request_Reply.h
-include/ace/Token_Request_Reply.i
+include/ace/Token_Request_Reply.inl
include/ace/Trace.cpp
include/ace/Trace.h
include/ace/Typed_SV_Message.cpp
include/ace/Typed_SV_Message.h
-include/ace/Typed_SV_Message.i
+include/ace/Typed_SV_Message.inl
include/ace/Typed_SV_Message_Queue.cpp
include/ace/Typed_SV_Message_Queue.h
-include/ace/Typed_SV_Message_Queue.i
+include/ace/Typed_SV_Message_Queue.inl
include/ace/UNIX_Addr.cpp
include/ace/UNIX_Addr.h
-include/ace/UNIX_Addr.i
+include/ace/UNIX_Addr.inl
include/ace/UPIPE_Acceptor.cpp
include/ace/UPIPE_Acceptor.h
-include/ace/UPIPE_Acceptor.i
+include/ace/UPIPE_Acceptor.inl
include/ace/UPIPE_Addr.h
include/ace/UPIPE_Connector.cpp
include/ace/UPIPE_Connector.h
-include/ace/UPIPE_Connector.i
+include/ace/UPIPE_Connector.inl
include/ace/UPIPE_Stream.cpp
include/ace/UPIPE_Stream.h
-include/ace/UPIPE_Stream.i
+include/ace/UPIPE_Stream.inl
include/ace/UUID.cpp
include/ace/UUID.h
include/ace/UUID.inl
@@ -1221,11 +1215,11 @@ include/ace/Unbounded_Set_Ex.h
include/ace/Unbounded_Set_Ex.inl
include/ace/Vector_T.cpp
include/ace/Vector_T.h
-include/ace/Vector_T.i
+include/ace/Vector_T.inl
include/ace/Version.h
include/ace/WFMO_Reactor.cpp
include/ace/WFMO_Reactor.h
-include/ace/WFMO_Reactor.i
+include/ace/WFMO_Reactor.inl
include/ace/WIN32_Asynch_IO.cpp
include/ace/WIN32_Asynch_IO.h
include/ace/WIN32_Proactor.cpp
@@ -1234,7 +1228,7 @@ include/ace/XML_Svc_Conf.cpp
include/ace/XML_Svc_Conf.h
include/ace/XTI_ATM_Mcast.cpp
include/ace/XTI_ATM_Mcast.h
-include/ace/XTI_ATM_Mcast.i
+include/ace/XTI_ATM_Mcast.inl
include/ace/XtReactor.cpp
include/ace/XtReactor.h
include/ace/ace_wchar.h
@@ -1334,6 +1328,7 @@ include/ace/post.h
include/ace/pre.h
include/ace/streams.h
include/ace/svc_export.h
+%%TAO%%include/orbsvcs/ATLAS.idl
%%TAO%%include/orbsvcs/AV/AVStreams_i.cpp
%%TAO%%include/orbsvcs/AV/AVStreams_i.h
%%TAO%%include/orbsvcs/AV/AVStreams_i.i
@@ -1354,8 +1349,6 @@ include/ace/svc_export.h
%%TAO%%include/orbsvcs/AV/MCast.cpp
%%TAO%%include/orbsvcs/AV/MCast.h
%%TAO%%include/orbsvcs/AV/MCast.i
-%%TAO%%include/orbsvcs/AV/Nil.cpp
-%%TAO%%include/orbsvcs/AV/Nil.h
%%TAO%%include/orbsvcs/AV/Policy.cpp
%%TAO%%include/orbsvcs/AV/Policy.h
%%TAO%%include/orbsvcs/AV/Policy.i
@@ -1396,13 +1389,33 @@ include/ace/svc_export.h
%%TAO%%include/orbsvcs/AVStreams.idl
%%TAO%%include/orbsvcs/AVStreamsC.cpp
%%TAO%%include/orbsvcs/AVStreamsC.h
-%%TAO%%include/orbsvcs/AVStreamsC.i
+%%TAO%%include/orbsvcs/AVStreamsC.inl
%%TAO%%include/orbsvcs/AVStreamsS.cpp
%%TAO%%include/orbsvcs/AVStreamsS.h
-%%TAO%%include/orbsvcs/AVStreamsS.i
+%%TAO%%include/orbsvcs/AVStreamsS.inl
%%TAO%%include/orbsvcs/AVStreamsS_T.cpp
%%TAO%%include/orbsvcs/AVStreamsS_T.h
-%%TAO%%include/orbsvcs/AVStreamsS_T.i
+%%TAO%%include/orbsvcs/AVStreamsS_T.inl
+%%TAO%%include/orbsvcs/CSI.idl
+%%TAO%%include/orbsvcs/CSIC.cpp
+%%TAO%%include/orbsvcs/CSIC.h
+%%TAO%%include/orbsvcs/CSIC.inl
+%%TAO%%include/orbsvcs/CSIIOP.idl
+%%TAO%%include/orbsvcs/CSIIOPC.cpp
+%%TAO%%include/orbsvcs/CSIIOPC.h
+%%TAO%%include/orbsvcs/CSIIOPC.inl
+%%TAO%%include/orbsvcs/CSIIOPS.cpp
+%%TAO%%include/orbsvcs/CSIIOPS.h
+%%TAO%%include/orbsvcs/CSIIOPS.inl
+%%TAO%%include/orbsvcs/CSIIOPS_T.cpp
+%%TAO%%include/orbsvcs/CSIIOPS_T.h
+%%TAO%%include/orbsvcs/CSIIOPS_T.inl
+%%TAO%%include/orbsvcs/CSIS.cpp
+%%TAO%%include/orbsvcs/CSIS.h
+%%TAO%%include/orbsvcs/CSIS.inl
+%%TAO%%include/orbsvcs/CSIS_T.cpp
+%%TAO%%include/orbsvcs/CSIS_T.h
+%%TAO%%include/orbsvcs/CSIS_T.inl
%%TAO%%include/orbsvcs/Channel_Clients.cpp
%%TAO%%include/orbsvcs/Channel_Clients.h
%%TAO%%include/orbsvcs/Channel_Clients_T.cpp
@@ -1422,13 +1435,13 @@ include/ace/svc_export.h
%%TAO%%include/orbsvcs/CosConcurrencyControl.idl
%%TAO%%include/orbsvcs/CosConcurrencyControlC.cpp
%%TAO%%include/orbsvcs/CosConcurrencyControlC.h
-%%TAO%%include/orbsvcs/CosConcurrencyControlC.i
+%%TAO%%include/orbsvcs/CosConcurrencyControlC.inl
%%TAO%%include/orbsvcs/CosConcurrencyControlS.cpp
%%TAO%%include/orbsvcs/CosConcurrencyControlS.h
-%%TAO%%include/orbsvcs/CosConcurrencyControlS.i
+%%TAO%%include/orbsvcs/CosConcurrencyControlS.inl
%%TAO%%include/orbsvcs/CosConcurrencyControlS_T.cpp
%%TAO%%include/orbsvcs/CosConcurrencyControlS_T.h
-%%TAO%%include/orbsvcs/CosConcurrencyControlS_T.i
+%%TAO%%include/orbsvcs/CosConcurrencyControlS_T.inl
%%TAO%%include/orbsvcs/CosEvent/CEC_ConsumerAdmin.cpp
%%TAO%%include/orbsvcs/CosEvent/CEC_ConsumerAdmin.h
%%TAO%%include/orbsvcs/CosEvent/CEC_ConsumerAdmin.i
@@ -1508,175 +1521,193 @@ include/ace/svc_export.h
%%TAO%%include/orbsvcs/CosEventChannelAdmin.idl
%%TAO%%include/orbsvcs/CosEventChannelAdminC.cpp
%%TAO%%include/orbsvcs/CosEventChannelAdminC.h
-%%TAO%%include/orbsvcs/CosEventChannelAdminC.i
+%%TAO%%include/orbsvcs/CosEventChannelAdminC.inl
%%TAO%%include/orbsvcs/CosEventChannelAdminS.cpp
%%TAO%%include/orbsvcs/CosEventChannelAdminS.h
-%%TAO%%include/orbsvcs/CosEventChannelAdminS.i
+%%TAO%%include/orbsvcs/CosEventChannelAdminS.inl
%%TAO%%include/orbsvcs/CosEventChannelAdminS_T.cpp
%%TAO%%include/orbsvcs/CosEventChannelAdminS_T.h
-%%TAO%%include/orbsvcs/CosEventChannelAdminS_T.i
+%%TAO%%include/orbsvcs/CosEventChannelAdminS_T.inl
%%TAO%%include/orbsvcs/CosEventComm.idl
%%TAO%%include/orbsvcs/CosEventCommC.cpp
%%TAO%%include/orbsvcs/CosEventCommC.h
-%%TAO%%include/orbsvcs/CosEventCommC.i
+%%TAO%%include/orbsvcs/CosEventCommC.inl
%%TAO%%include/orbsvcs/CosEventCommS.cpp
%%TAO%%include/orbsvcs/CosEventCommS.h
-%%TAO%%include/orbsvcs/CosEventCommS.i
+%%TAO%%include/orbsvcs/CosEventCommS.inl
%%TAO%%include/orbsvcs/CosEventCommS_T.cpp
%%TAO%%include/orbsvcs/CosEventCommS_T.h
-%%TAO%%include/orbsvcs/CosEventCommS_T.i
+%%TAO%%include/orbsvcs/CosEventCommS_T.inl
%%TAO%%include/orbsvcs/CosLifeCycle.idl
%%TAO%%include/orbsvcs/CosLifeCycleC.cpp
%%TAO%%include/orbsvcs/CosLifeCycleC.h
-%%TAO%%include/orbsvcs/CosLifeCycleC.i
+%%TAO%%include/orbsvcs/CosLifeCycleC.inl
%%TAO%%include/orbsvcs/CosLifeCycleS.cpp
%%TAO%%include/orbsvcs/CosLifeCycleS.h
-%%TAO%%include/orbsvcs/CosLifeCycleS.i
+%%TAO%%include/orbsvcs/CosLifeCycleS.inl
%%TAO%%include/orbsvcs/CosLifeCycleS_T.cpp
%%TAO%%include/orbsvcs/CosLifeCycleS_T.h
-%%TAO%%include/orbsvcs/CosLifeCycleS_T.i
+%%TAO%%include/orbsvcs/CosLifeCycleS_T.inl
%%TAO%%include/orbsvcs/CosLoadBalancing.idl
%%TAO%%include/orbsvcs/CosLoadBalancingC.cpp
%%TAO%%include/orbsvcs/CosLoadBalancingC.h
-%%TAO%%include/orbsvcs/CosLoadBalancingC.i
+%%TAO%%include/orbsvcs/CosLoadBalancingC.inl
%%TAO%%include/orbsvcs/CosLoadBalancingS.cpp
%%TAO%%include/orbsvcs/CosLoadBalancingS.h
-%%TAO%%include/orbsvcs/CosLoadBalancingS.i
+%%TAO%%include/orbsvcs/CosLoadBalancingS.inl
%%TAO%%include/orbsvcs/CosLoadBalancingS_T.cpp
%%TAO%%include/orbsvcs/CosLoadBalancingS_T.h
-%%TAO%%include/orbsvcs/CosLoadBalancingS_T.i
+%%TAO%%include/orbsvcs/CosLoadBalancingS_T.inl
%%TAO%%include/orbsvcs/CosNaming.idl
%%TAO%%include/orbsvcs/CosNamingC.cpp
%%TAO%%include/orbsvcs/CosNamingC.h
-%%TAO%%include/orbsvcs/CosNamingC.i
+%%TAO%%include/orbsvcs/CosNamingC.inl
%%TAO%%include/orbsvcs/CosNamingS.cpp
%%TAO%%include/orbsvcs/CosNamingS.h
-%%TAO%%include/orbsvcs/CosNamingS.i
+%%TAO%%include/orbsvcs/CosNamingS.inl
%%TAO%%include/orbsvcs/CosNamingS_T.cpp
%%TAO%%include/orbsvcs/CosNamingS_T.h
-%%TAO%%include/orbsvcs/CosNamingS_T.i
+%%TAO%%include/orbsvcs/CosNamingS_T.inl
%%TAO%%include/orbsvcs/CosNotification.idl
%%TAO%%include/orbsvcs/CosNotificationC.cpp
%%TAO%%include/orbsvcs/CosNotificationC.h
-%%TAO%%include/orbsvcs/CosNotificationC.i
+%%TAO%%include/orbsvcs/CosNotificationC.inl
%%TAO%%include/orbsvcs/CosNotificationS.cpp
%%TAO%%include/orbsvcs/CosNotificationS.h
-%%TAO%%include/orbsvcs/CosNotificationS.i
+%%TAO%%include/orbsvcs/CosNotificationS.inl
%%TAO%%include/orbsvcs/CosNotificationS_T.cpp
%%TAO%%include/orbsvcs/CosNotificationS_T.h
-%%TAO%%include/orbsvcs/CosNotificationS_T.i
+%%TAO%%include/orbsvcs/CosNotificationS_T.inl
%%TAO%%include/orbsvcs/CosNotifyChannelAdmin.idl
%%TAO%%include/orbsvcs/CosNotifyChannelAdminC.cpp
%%TAO%%include/orbsvcs/CosNotifyChannelAdminC.h
-%%TAO%%include/orbsvcs/CosNotifyChannelAdminC.i
+%%TAO%%include/orbsvcs/CosNotifyChannelAdminC.inl
%%TAO%%include/orbsvcs/CosNotifyChannelAdminS.cpp
%%TAO%%include/orbsvcs/CosNotifyChannelAdminS.h
-%%TAO%%include/orbsvcs/CosNotifyChannelAdminS.i
+%%TAO%%include/orbsvcs/CosNotifyChannelAdminS.inl
%%TAO%%include/orbsvcs/CosNotifyChannelAdminS_T.cpp
%%TAO%%include/orbsvcs/CosNotifyChannelAdminS_T.h
-%%TAO%%include/orbsvcs/CosNotifyChannelAdminS_T.i
+%%TAO%%include/orbsvcs/CosNotifyChannelAdminS_T.inl
%%TAO%%include/orbsvcs/CosNotifyComm.idl
%%TAO%%include/orbsvcs/CosNotifyCommC.cpp
%%TAO%%include/orbsvcs/CosNotifyCommC.h
-%%TAO%%include/orbsvcs/CosNotifyCommC.i
+%%TAO%%include/orbsvcs/CosNotifyCommC.inl
%%TAO%%include/orbsvcs/CosNotifyCommS.cpp
%%TAO%%include/orbsvcs/CosNotifyCommS.h
-%%TAO%%include/orbsvcs/CosNotifyCommS.i
+%%TAO%%include/orbsvcs/CosNotifyCommS.inl
%%TAO%%include/orbsvcs/CosNotifyCommS_T.cpp
%%TAO%%include/orbsvcs/CosNotifyCommS_T.h
-%%TAO%%include/orbsvcs/CosNotifyCommS_T.i
+%%TAO%%include/orbsvcs/CosNotifyCommS_T.inl
%%TAO%%include/orbsvcs/CosNotifyFilter.idl
%%TAO%%include/orbsvcs/CosNotifyFilterC.cpp
%%TAO%%include/orbsvcs/CosNotifyFilterC.h
-%%TAO%%include/orbsvcs/CosNotifyFilterC.i
+%%TAO%%include/orbsvcs/CosNotifyFilterC.inl
%%TAO%%include/orbsvcs/CosNotifyFilterS.cpp
%%TAO%%include/orbsvcs/CosNotifyFilterS.h
-%%TAO%%include/orbsvcs/CosNotifyFilterS.i
+%%TAO%%include/orbsvcs/CosNotifyFilterS.inl
%%TAO%%include/orbsvcs/CosNotifyFilterS_T.cpp
%%TAO%%include/orbsvcs/CosNotifyFilterS_T.h
-%%TAO%%include/orbsvcs/CosNotifyFilterS_T.i
+%%TAO%%include/orbsvcs/CosNotifyFilterS_T.inl
%%TAO%%include/orbsvcs/CosPropertyService.idl
%%TAO%%include/orbsvcs/CosPropertyServiceC.cpp
%%TAO%%include/orbsvcs/CosPropertyServiceC.h
-%%TAO%%include/orbsvcs/CosPropertyServiceC.i
+%%TAO%%include/orbsvcs/CosPropertyServiceC.inl
%%TAO%%include/orbsvcs/CosPropertyServiceS.cpp
%%TAO%%include/orbsvcs/CosPropertyServiceS.h
-%%TAO%%include/orbsvcs/CosPropertyServiceS.i
+%%TAO%%include/orbsvcs/CosPropertyServiceS.inl
%%TAO%%include/orbsvcs/CosPropertyServiceS_T.cpp
%%TAO%%include/orbsvcs/CosPropertyServiceS_T.h
-%%TAO%%include/orbsvcs/CosPropertyServiceS_T.i
+%%TAO%%include/orbsvcs/CosPropertyServiceS_T.inl
%%TAO%%include/orbsvcs/CosTrading.idl
%%TAO%%include/orbsvcs/CosTradingC.cpp
%%TAO%%include/orbsvcs/CosTradingC.h
-%%TAO%%include/orbsvcs/CosTradingC.i
+%%TAO%%include/orbsvcs/CosTradingC.inl
%%TAO%%include/orbsvcs/CosTradingDynamic.idl
%%TAO%%include/orbsvcs/CosTradingDynamicC.cpp
%%TAO%%include/orbsvcs/CosTradingDynamicC.h
-%%TAO%%include/orbsvcs/CosTradingDynamicC.i
+%%TAO%%include/orbsvcs/CosTradingDynamicC.inl
%%TAO%%include/orbsvcs/CosTradingDynamicS.cpp
%%TAO%%include/orbsvcs/CosTradingDynamicS.h
-%%TAO%%include/orbsvcs/CosTradingDynamicS.i
+%%TAO%%include/orbsvcs/CosTradingDynamicS.inl
%%TAO%%include/orbsvcs/CosTradingDynamicS_T.cpp
%%TAO%%include/orbsvcs/CosTradingDynamicS_T.h
-%%TAO%%include/orbsvcs/CosTradingDynamicS_T.i
+%%TAO%%include/orbsvcs/CosTradingDynamicS_T.inl
%%TAO%%include/orbsvcs/CosTradingRepos.idl
%%TAO%%include/orbsvcs/CosTradingReposC.cpp
%%TAO%%include/orbsvcs/CosTradingReposC.h
-%%TAO%%include/orbsvcs/CosTradingReposC.i
+%%TAO%%include/orbsvcs/CosTradingReposC.inl
%%TAO%%include/orbsvcs/CosTradingReposS.cpp
%%TAO%%include/orbsvcs/CosTradingReposS.h
-%%TAO%%include/orbsvcs/CosTradingReposS.i
+%%TAO%%include/orbsvcs/CosTradingReposS.inl
%%TAO%%include/orbsvcs/CosTradingReposS_T.cpp
%%TAO%%include/orbsvcs/CosTradingReposS_T.h
-%%TAO%%include/orbsvcs/CosTradingReposS_T.i
+%%TAO%%include/orbsvcs/CosTradingReposS_T.inl
%%TAO%%include/orbsvcs/CosTradingS.cpp
%%TAO%%include/orbsvcs/CosTradingS.h
-%%TAO%%include/orbsvcs/CosTradingS.i
+%%TAO%%include/orbsvcs/CosTradingS.inl
%%TAO%%include/orbsvcs/CosTradingS_T.cpp
%%TAO%%include/orbsvcs/CosTradingS_T.h
-%%TAO%%include/orbsvcs/CosTradingS_T.i
+%%TAO%%include/orbsvcs/CosTradingS_T.inl
%%TAO%%include/orbsvcs/CosTypedEventChannelAdmin.idl
+%%TAO%%include/orbsvcs/CosTypedEventChannelAdminC.cpp
+%%TAO%%include/orbsvcs/CosTypedEventChannelAdminC.h
+%%TAO%%include/orbsvcs/CosTypedEventChannelAdminC.inl
+%%TAO%%include/orbsvcs/CosTypedEventChannelAdminS.cpp
+%%TAO%%include/orbsvcs/CosTypedEventChannelAdminS.h
+%%TAO%%include/orbsvcs/CosTypedEventChannelAdminS.inl
+%%TAO%%include/orbsvcs/CosTypedEventChannelAdminS_T.cpp
+%%TAO%%include/orbsvcs/CosTypedEventChannelAdminS_T.h
+%%TAO%%include/orbsvcs/CosTypedEventChannelAdminS_T.inl
%%TAO%%include/orbsvcs/CosTypedEventComm.idl
+%%TAO%%include/orbsvcs/CosTypedEventCommC.cpp
+%%TAO%%include/orbsvcs/CosTypedEventCommC.h
+%%TAO%%include/orbsvcs/CosTypedEventCommC.inl
+%%TAO%%include/orbsvcs/CosTypedEventCommS.cpp
+%%TAO%%include/orbsvcs/CosTypedEventCommS.h
+%%TAO%%include/orbsvcs/CosTypedEventCommS.inl
+%%TAO%%include/orbsvcs/CosTypedEventCommS_T.cpp
+%%TAO%%include/orbsvcs/CosTypedEventCommS_T.h
+%%TAO%%include/orbsvcs/CosTypedEventCommS_T.inl
%%TAO%%include/orbsvcs/DsEventLogAdmin.idl
%%TAO%%include/orbsvcs/DsEventLogAdminC.cpp
%%TAO%%include/orbsvcs/DsEventLogAdminC.h
-%%TAO%%include/orbsvcs/DsEventLogAdminC.i
+%%TAO%%include/orbsvcs/DsEventLogAdminC.inl
%%TAO%%include/orbsvcs/DsEventLogAdminS.cpp
%%TAO%%include/orbsvcs/DsEventLogAdminS.h
-%%TAO%%include/orbsvcs/DsEventLogAdminS.i
+%%TAO%%include/orbsvcs/DsEventLogAdminS.inl
%%TAO%%include/orbsvcs/DsEventLogAdminS_T.cpp
%%TAO%%include/orbsvcs/DsEventLogAdminS_T.h
-%%TAO%%include/orbsvcs/DsEventLogAdminS_T.i
+%%TAO%%include/orbsvcs/DsEventLogAdminS_T.inl
%%TAO%%include/orbsvcs/DsLogAdmin.idl
%%TAO%%include/orbsvcs/DsLogAdminC.cpp
%%TAO%%include/orbsvcs/DsLogAdminC.h
-%%TAO%%include/orbsvcs/DsLogAdminC.i
+%%TAO%%include/orbsvcs/DsLogAdminC.inl
%%TAO%%include/orbsvcs/DsLogAdminS.cpp
%%TAO%%include/orbsvcs/DsLogAdminS.h
-%%TAO%%include/orbsvcs/DsLogAdminS.i
+%%TAO%%include/orbsvcs/DsLogAdminS.inl
%%TAO%%include/orbsvcs/DsLogAdminS_T.cpp
%%TAO%%include/orbsvcs/DsLogAdminS_T.h
-%%TAO%%include/orbsvcs/DsLogAdminS_T.i
+%%TAO%%include/orbsvcs/DsLogAdminS_T.inl
%%TAO%%include/orbsvcs/DsLogNotification.idl
%%TAO%%include/orbsvcs/DsLogNotificationC.cpp
%%TAO%%include/orbsvcs/DsLogNotificationC.h
-%%TAO%%include/orbsvcs/DsLogNotificationC.i
+%%TAO%%include/orbsvcs/DsLogNotificationC.inl
%%TAO%%include/orbsvcs/DsLogNotificationS.cpp
%%TAO%%include/orbsvcs/DsLogNotificationS.h
-%%TAO%%include/orbsvcs/DsLogNotificationS.i
+%%TAO%%include/orbsvcs/DsLogNotificationS.inl
%%TAO%%include/orbsvcs/DsLogNotificationS_T.cpp
%%TAO%%include/orbsvcs/DsLogNotificationS_T.h
-%%TAO%%include/orbsvcs/DsLogNotificationS_T.i
+%%TAO%%include/orbsvcs/DsLogNotificationS_T.inl
%%TAO%%include/orbsvcs/DsNotifyLogAdmin.idl
%%TAO%%include/orbsvcs/DsNotifyLogAdminC.cpp
%%TAO%%include/orbsvcs/DsNotifyLogAdminC.h
-%%TAO%%include/orbsvcs/DsNotifyLogAdminC.i
+%%TAO%%include/orbsvcs/DsNotifyLogAdminC.inl
%%TAO%%include/orbsvcs/DsNotifyLogAdminS.cpp
%%TAO%%include/orbsvcs/DsNotifyLogAdminS.h
-%%TAO%%include/orbsvcs/DsNotifyLogAdminS.i
+%%TAO%%include/orbsvcs/DsNotifyLogAdminS.inl
%%TAO%%include/orbsvcs/DsNotifyLogAdminS_T.cpp
%%TAO%%include/orbsvcs/DsNotifyLogAdminS_T.h
-%%TAO%%include/orbsvcs/DsNotifyLogAdminS_T.i
+%%TAO%%include/orbsvcs/DsNotifyLogAdminS_T.inl
%%TAO%%include/orbsvcs/ESF/ESF_Busy_Lock.cpp
%%TAO%%include/orbsvcs/ESF/ESF_Busy_Lock.h
%%TAO%%include/orbsvcs/ESF/ESF_Busy_Lock.i
@@ -1740,8 +1771,6 @@ include/ace/svc_export.h
%%TAO%%include/orbsvcs/ETCL/etcl_export.h
%%TAO%%include/orbsvcs/Event/BCU.cpp
%%TAO%%include/orbsvcs/Event/BCU.h
-%%TAO%%include/orbsvcs/Event/CRC.cpp
-%%TAO%%include/orbsvcs/Event/CRC.h
%%TAO%%include/orbsvcs/Event/Debug_Macros.h
%%TAO%%include/orbsvcs/Event/Dispatching_Modules.cpp
%%TAO%%include/orbsvcs/Event/Dispatching_Modules.h
@@ -2018,43 +2047,97 @@ include/ace/svc_export.h
%%TAO%%include/orbsvcs/Event_Forwarder.idl
%%TAO%%include/orbsvcs/Event_ForwarderC.cpp
%%TAO%%include/orbsvcs/Event_ForwarderC.h
-%%TAO%%include/orbsvcs/Event_ForwarderC.i
+%%TAO%%include/orbsvcs/Event_ForwarderC.inl
%%TAO%%include/orbsvcs/Event_ForwarderS.cpp
%%TAO%%include/orbsvcs/Event_ForwarderS.h
-%%TAO%%include/orbsvcs/Event_ForwarderS.i
+%%TAO%%include/orbsvcs/Event_ForwarderS.inl
%%TAO%%include/orbsvcs/Event_ForwarderS_T.cpp
%%TAO%%include/orbsvcs/Event_ForwarderS_T.h
-%%TAO%%include/orbsvcs/Event_ForwarderS_T.i
+%%TAO%%include/orbsvcs/Event_ForwarderS_T.inl
%%TAO%%include/orbsvcs/Event_Service_Constants.h
%%TAO%%include/orbsvcs/Event_Utilities.cpp
%%TAO%%include/orbsvcs/Event_Utilities.h
%%TAO%%include/orbsvcs/Event_Utilities.i
%%TAO%%include/orbsvcs/FTRT.idl
+%%TAO%%include/orbsvcs/FTRTC.cpp
+%%TAO%%include/orbsvcs/FTRTC.h
+%%TAO%%include/orbsvcs/FTRTC.inl
+%%TAO%%include/orbsvcs/FTRTS.cpp
+%%TAO%%include/orbsvcs/FTRTS.h
+%%TAO%%include/orbsvcs/FTRTS.inl
+%%TAO%%include/orbsvcs/FTRTS_T.cpp
+%%TAO%%include/orbsvcs/FTRTS_T.h
+%%TAO%%include/orbsvcs/FTRTS_T.inl
%%TAO%%include/orbsvcs/FTRT_GroupManager.idl
+%%TAO%%include/orbsvcs/FTRT_GroupManagerC.cpp
+%%TAO%%include/orbsvcs/FTRT_GroupManagerC.h
+%%TAO%%include/orbsvcs/FTRT_GroupManagerC.inl
+%%TAO%%include/orbsvcs/FTRT_GroupManagerS.cpp
+%%TAO%%include/orbsvcs/FTRT_GroupManagerS.h
+%%TAO%%include/orbsvcs/FTRT_GroupManagerS.inl
+%%TAO%%include/orbsvcs/FTRT_GroupManagerS_T.cpp
+%%TAO%%include/orbsvcs/FTRT_GroupManagerS_T.h
+%%TAO%%include/orbsvcs/FTRT_GroupManagerS_T.inl
%%TAO%%include/orbsvcs/FT_CORBA.idl
%%TAO%%include/orbsvcs/FT_CORBAC.cpp
%%TAO%%include/orbsvcs/FT_CORBAC.h
-%%TAO%%include/orbsvcs/FT_CORBAC.i
+%%TAO%%include/orbsvcs/FT_CORBAC.inl
%%TAO%%include/orbsvcs/FT_CORBAS.cpp
%%TAO%%include/orbsvcs/FT_CORBAS.h
-%%TAO%%include/orbsvcs/FT_CORBAS.i
+%%TAO%%include/orbsvcs/FT_CORBAS.inl
%%TAO%%include/orbsvcs/FT_CORBAS_T.cpp
%%TAO%%include/orbsvcs/FT_CORBAS_T.h
-%%TAO%%include/orbsvcs/FT_CORBAS_T.i
+%%TAO%%include/orbsvcs/FT_CORBAS_T.inl
%%TAO%%include/orbsvcs/FT_CORBA_ORB.idl
%%TAO%%include/orbsvcs/FT_CORBA_ORBC.cpp
%%TAO%%include/orbsvcs/FT_CORBA_ORBC.h
-%%TAO%%include/orbsvcs/FT_CORBA_ORBC.i
+%%TAO%%include/orbsvcs/FT_CORBA_ORBC.inl
%%TAO%%include/orbsvcs/FT_CORBA_ORBS.cpp
%%TAO%%include/orbsvcs/FT_CORBA_ORBS.h
-%%TAO%%include/orbsvcs/FT_CORBA_ORBS.i
+%%TAO%%include/orbsvcs/FT_CORBA_ORBS.inl
%%TAO%%include/orbsvcs/FT_CORBA_ORBS_T.cpp
%%TAO%%include/orbsvcs/FT_CORBA_ORBS_T.h
-%%TAO%%include/orbsvcs/FT_CORBA_ORBS_T.i
+%%TAO%%include/orbsvcs/FT_CORBA_ORBS_T.inl
%%TAO%%include/orbsvcs/FT_FaultDetectorFactory.idl
+%%TAO%%include/orbsvcs/FT_FaultDetectorFactoryC.cpp
+%%TAO%%include/orbsvcs/FT_FaultDetectorFactoryC.h
+%%TAO%%include/orbsvcs/FT_FaultDetectorFactoryC.inl
+%%TAO%%include/orbsvcs/FT_FaultDetectorFactoryS.cpp
+%%TAO%%include/orbsvcs/FT_FaultDetectorFactoryS.h
+%%TAO%%include/orbsvcs/FT_FaultDetectorFactoryS.inl
+%%TAO%%include/orbsvcs/FT_FaultDetectorFactoryS_T.cpp
+%%TAO%%include/orbsvcs/FT_FaultDetectorFactoryS_T.h
+%%TAO%%include/orbsvcs/FT_FaultDetectorFactoryS_T.inl
%%TAO%%include/orbsvcs/FT_Notifier.idl
+%%TAO%%include/orbsvcs/FT_NotifierC.cpp
+%%TAO%%include/orbsvcs/FT_NotifierC.h
+%%TAO%%include/orbsvcs/FT_NotifierC.inl
+%%TAO%%include/orbsvcs/FT_NotifierS.cpp
+%%TAO%%include/orbsvcs/FT_NotifierS.h
+%%TAO%%include/orbsvcs/FT_NotifierS.inl
+%%TAO%%include/orbsvcs/FT_NotifierS_T.cpp
+%%TAO%%include/orbsvcs/FT_NotifierS_T.h
+%%TAO%%include/orbsvcs/FT_NotifierS_T.inl
%%TAO%%include/orbsvcs/FT_Replica.idl
+%%TAO%%include/orbsvcs/FT_ReplicaC.cpp
+%%TAO%%include/orbsvcs/FT_ReplicaC.h
+%%TAO%%include/orbsvcs/FT_ReplicaC.inl
+%%TAO%%include/orbsvcs/FT_ReplicaS.cpp
+%%TAO%%include/orbsvcs/FT_ReplicaS.h
+%%TAO%%include/orbsvcs/FT_ReplicaS.inl
+%%TAO%%include/orbsvcs/FT_ReplicaS_T.cpp
+%%TAO%%include/orbsvcs/FT_ReplicaS_T.h
+%%TAO%%include/orbsvcs/FT_ReplicaS_T.inl
%%TAO%%include/orbsvcs/FT_ReplicationManager.idl
+%%TAO%%include/orbsvcs/FT_ReplicationManagerC.cpp
+%%TAO%%include/orbsvcs/FT_ReplicationManagerC.h
+%%TAO%%include/orbsvcs/FT_ReplicationManagerC.inl
+%%TAO%%include/orbsvcs/FT_ReplicationManagerS.cpp
+%%TAO%%include/orbsvcs/FT_ReplicationManagerS.h
+%%TAO%%include/orbsvcs/FT_ReplicationManagerS.inl
+%%TAO%%include/orbsvcs/FT_ReplicationManagerS_T.cpp
+%%TAO%%include/orbsvcs/FT_ReplicationManagerS_T.h
+%%TAO%%include/orbsvcs/FT_ReplicationManagerS_T.inl
%%TAO%%include/orbsvcs/FaultTolerance/FT_ClientORBInitializer.cpp
%%TAO%%include/orbsvcs/FaultTolerance/FT_ClientORBInitializer.h
%%TAO%%include/orbsvcs/FaultTolerance/FT_ClientORB_export.h
@@ -2206,7 +2289,35 @@ include/ace/svc_export.h
%%TAO%%include/orbsvcs/FtRtEvent/Utils/ftrtevent_export.h
%%TAO%%include/orbsvcs/FtRtEvent/Utils/resolve_init.h
%%TAO%%include/orbsvcs/FtRtecEventChannelAdmin.idl
+%%TAO%%include/orbsvcs/FtRtecEventChannelAdminC.cpp
+%%TAO%%include/orbsvcs/FtRtecEventChannelAdminC.h
+%%TAO%%include/orbsvcs/FtRtecEventChannelAdminC.inl
+%%TAO%%include/orbsvcs/FtRtecEventChannelAdminS.cpp
+%%TAO%%include/orbsvcs/FtRtecEventChannelAdminS.h
+%%TAO%%include/orbsvcs/FtRtecEventChannelAdminS.inl
+%%TAO%%include/orbsvcs/FtRtecEventChannelAdminS_T.cpp
+%%TAO%%include/orbsvcs/FtRtecEventChannelAdminS_T.h
+%%TAO%%include/orbsvcs/FtRtecEventChannelAdminS_T.inl
%%TAO%%include/orbsvcs/FtRtecEventComm.idl
+%%TAO%%include/orbsvcs/FtRtecEventCommC.cpp
+%%TAO%%include/orbsvcs/FtRtecEventCommC.h
+%%TAO%%include/orbsvcs/FtRtecEventCommC.inl
+%%TAO%%include/orbsvcs/FtRtecEventCommS.cpp
+%%TAO%%include/orbsvcs/FtRtecEventCommS.h
+%%TAO%%include/orbsvcs/FtRtecEventCommS.inl
+%%TAO%%include/orbsvcs/FtRtecEventCommS_T.cpp
+%%TAO%%include/orbsvcs/FtRtecEventCommS_T.h
+%%TAO%%include/orbsvcs/FtRtecEventCommS_T.inl
+%%TAO%%include/orbsvcs/GSSUP.idl
+%%TAO%%include/orbsvcs/GSSUPC.cpp
+%%TAO%%include/orbsvcs/GSSUPC.h
+%%TAO%%include/orbsvcs/GSSUPC.inl
+%%TAO%%include/orbsvcs/GSSUPS.cpp
+%%TAO%%include/orbsvcs/GSSUPS.h
+%%TAO%%include/orbsvcs/GSSUPS.inl
+%%TAO%%include/orbsvcs/GSSUPS_T.cpp
+%%TAO%%include/orbsvcs/GSSUPS_T.h
+%%TAO%%include/orbsvcs/GSSUPS_T.inl
%%TAO%%include/orbsvcs/IFRService/AbstractInterfaceDef_i.cpp
%%TAO%%include/orbsvcs/IFRService/AbstractInterfaceDef_i.h
%%TAO%%include/orbsvcs/IFRService/AliasDef_i.cpp
@@ -2344,26 +2455,28 @@ include/ace/svc_export.h
%%TAO%%include/orbsvcs/LB_ORT.idl
%%TAO%%include/orbsvcs/LB_ORTC.cpp
%%TAO%%include/orbsvcs/LB_ORTC.h
-%%TAO%%include/orbsvcs/LB_ORTC.i
+%%TAO%%include/orbsvcs/LB_ORTC.inl
%%TAO%%include/orbsvcs/LB_ORTS.cpp
%%TAO%%include/orbsvcs/LB_ORTS.h
-%%TAO%%include/orbsvcs/LB_ORTS.i
+%%TAO%%include/orbsvcs/LB_ORTS.inl
%%TAO%%include/orbsvcs/LB_ORTS_T.cpp
%%TAO%%include/orbsvcs/LB_ORTS_T.h
-%%TAO%%include/orbsvcs/LB_ORTS_T.i
+%%TAO%%include/orbsvcs/LB_ORTS_T.inl
%%TAO%%include/orbsvcs/LifeCycle/lifecycle_export.h
%%TAO%%include/orbsvcs/LifeCycleService.idl
%%TAO%%include/orbsvcs/LifeCycleServiceC.cpp
%%TAO%%include/orbsvcs/LifeCycleServiceC.h
-%%TAO%%include/orbsvcs/LifeCycleServiceC.i
+%%TAO%%include/orbsvcs/LifeCycleServiceC.inl
%%TAO%%include/orbsvcs/LifeCycleServiceS.cpp
%%TAO%%include/orbsvcs/LifeCycleServiceS.h
-%%TAO%%include/orbsvcs/LifeCycleServiceS.i
+%%TAO%%include/orbsvcs/LifeCycleServiceS.inl
%%TAO%%include/orbsvcs/LifeCycleServiceS_T.cpp
%%TAO%%include/orbsvcs/LifeCycleServiceS_T.h
-%%TAO%%include/orbsvcs/LifeCycleServiceS_T.i
-%%TAO%%include/orbsvcs/LoadBalancing/LB_CPU_Monitor.cpp
-%%TAO%%include/orbsvcs/LoadBalancing/LB_CPU_Monitor.h
+%%TAO%%include/orbsvcs/LifeCycleServiceS_T.inl
+%%TAO%%include/orbsvcs/LoadBalancing/LB_CPU_Load_Average_Monitor.cpp
+%%TAO%%include/orbsvcs/LoadBalancing/LB_CPU_Load_Average_Monitor.h
+%%TAO%%include/orbsvcs/LoadBalancing/LB_CPU_Utilization_Monitor.cpp
+%%TAO%%include/orbsvcs/LoadBalancing/LB_CPU_Utilization_Monitor.h
%%TAO%%include/orbsvcs/LoadBalancing/LB_ClientComponent.cpp
%%TAO%%include/orbsvcs/LoadBalancing/LB_ClientComponent.h
%%TAO%%include/orbsvcs/LoadBalancing/LB_ClientORBInitializer.cpp
@@ -2389,15 +2502,15 @@ include/ace/svc_export.h
%%TAO%%include/orbsvcs/LoadBalancing/LB_LoadAverage.cpp
%%TAO%%include/orbsvcs/LoadBalancing/LB_LoadAverage.h
%%TAO%%include/orbsvcs/LoadBalancing/LB_LoadAverage.inl
-%%TAO%%include/orbsvcs/LoadBalancing/LB_LoadMinimum.cpp
-%%TAO%%include/orbsvcs/LoadBalancing/LB_LoadMinimum.h
-%%TAO%%include/orbsvcs/LoadBalancing/LB_LoadMinimum.inl
%%TAO%%include/orbsvcs/LoadBalancing/LB_LoadListMap.cpp
%%TAO%%include/orbsvcs/LoadBalancing/LB_LoadListMap.h
%%TAO%%include/orbsvcs/LoadBalancing/LB_LoadManager.cpp
%%TAO%%include/orbsvcs/LoadBalancing/LB_LoadManager.h
%%TAO%%include/orbsvcs/LoadBalancing/LB_LoadMap.cpp
%%TAO%%include/orbsvcs/LoadBalancing/LB_LoadMap.h
+%%TAO%%include/orbsvcs/LoadBalancing/LB_LoadMinimum.cpp
+%%TAO%%include/orbsvcs/LoadBalancing/LB_LoadMinimum.h
+%%TAO%%include/orbsvcs/LoadBalancing/LB_LoadMinimum.inl
%%TAO%%include/orbsvcs/LoadBalancing/LB_Location_Index_Map.cpp
%%TAO%%include/orbsvcs/LoadBalancing/LB_Location_Index_Map.h
%%TAO%%include/orbsvcs/LoadBalancing/LB_MemberLocator.cpp
@@ -2792,23 +2905,23 @@ include/ace/svc_export.h
%%TAO%%include/orbsvcs/NotifyExt.idl
%%TAO%%include/orbsvcs/NotifyExtC.cpp
%%TAO%%include/orbsvcs/NotifyExtC.h
-%%TAO%%include/orbsvcs/NotifyExtC.i
+%%TAO%%include/orbsvcs/NotifyExtC.inl
%%TAO%%include/orbsvcs/NotifyExtS.cpp
%%TAO%%include/orbsvcs/NotifyExtS.h
-%%TAO%%include/orbsvcs/NotifyExtS.i
+%%TAO%%include/orbsvcs/NotifyExtS.inl
%%TAO%%include/orbsvcs/NotifyExtS_T.cpp
%%TAO%%include/orbsvcs/NotifyExtS_T.h
-%%TAO%%include/orbsvcs/NotifyExtS_T.i
+%%TAO%%include/orbsvcs/NotifyExtS_T.inl
%%TAO%%include/orbsvcs/Null_MediaCtrl.idl
%%TAO%%include/orbsvcs/Null_MediaCtrlC.cpp
%%TAO%%include/orbsvcs/Null_MediaCtrlC.h
-%%TAO%%include/orbsvcs/Null_MediaCtrlC.i
+%%TAO%%include/orbsvcs/Null_MediaCtrlC.inl
%%TAO%%include/orbsvcs/Null_MediaCtrlS.cpp
%%TAO%%include/orbsvcs/Null_MediaCtrlS.h
-%%TAO%%include/orbsvcs/Null_MediaCtrlS.i
+%%TAO%%include/orbsvcs/Null_MediaCtrlS.inl
%%TAO%%include/orbsvcs/Null_MediaCtrlS_T.cpp
%%TAO%%include/orbsvcs/Null_MediaCtrlS_T.h
-%%TAO%%include/orbsvcs/Null_MediaCtrlS_T.i
+%%TAO%%include/orbsvcs/Null_MediaCtrlS_T.inl
%%TAO%%include/orbsvcs/PortableGroup.idl
%%TAO%%include/orbsvcs/PortableGroup/PG_Default_Property_Validator.cpp
%%TAO%%include/orbsvcs/PortableGroup/PG_Default_Property_Validator.h
@@ -2900,23 +3013,23 @@ include/ace/svc_export.h
%%TAO%%include/orbsvcs/PortableGroup/portablegroup_export.h
%%TAO%%include/orbsvcs/PortableGroupC.cpp
%%TAO%%include/orbsvcs/PortableGroupC.h
-%%TAO%%include/orbsvcs/PortableGroupC.i
+%%TAO%%include/orbsvcs/PortableGroupC.inl
%%TAO%%include/orbsvcs/PortableGroupS.cpp
%%TAO%%include/orbsvcs/PortableGroupS.h
-%%TAO%%include/orbsvcs/PortableGroupS.i
+%%TAO%%include/orbsvcs/PortableGroupS.inl
%%TAO%%include/orbsvcs/PortableGroupS_T.cpp
%%TAO%%include/orbsvcs/PortableGroupS_T.h
-%%TAO%%include/orbsvcs/PortableGroupS_T.i
+%%TAO%%include/orbsvcs/PortableGroupS_T.inl
%%TAO%%include/orbsvcs/PortableGroup_Simple_DS.idl
%%TAO%%include/orbsvcs/PortableGroup_Simple_DSC.cpp
%%TAO%%include/orbsvcs/PortableGroup_Simple_DSC.h
-%%TAO%%include/orbsvcs/PortableGroup_Simple_DSC.i
+%%TAO%%include/orbsvcs/PortableGroup_Simple_DSC.inl
%%TAO%%include/orbsvcs/PortableGroup_Simple_DSS.cpp
%%TAO%%include/orbsvcs/PortableGroup_Simple_DSS.h
-%%TAO%%include/orbsvcs/PortableGroup_Simple_DSS.i
+%%TAO%%include/orbsvcs/PortableGroup_Simple_DSS.inl
%%TAO%%include/orbsvcs/PortableGroup_Simple_DSS_T.cpp
%%TAO%%include/orbsvcs/PortableGroup_Simple_DSS_T.h
-%%TAO%%include/orbsvcs/PortableGroup_Simple_DSS_T.i
+%%TAO%%include/orbsvcs/PortableGroup_Simple_DSS_T.inl
%%TAO%%include/orbsvcs/Property/CosPropertyService_i.cpp
%%TAO%%include/orbsvcs/Property/CosPropertyService_i.h
%%TAO%%include/orbsvcs/Property/property_export.h
@@ -2933,83 +3046,89 @@ include/ace/svc_export.h
%%TAO%%include/orbsvcs/RTCosScheduling/RTCosScheduling_export.h
%%TAO%%include/orbsvcs/RTCosSchedulingC.cpp
%%TAO%%include/orbsvcs/RTCosSchedulingC.h
-%%TAO%%include/orbsvcs/RTCosSchedulingC.i
+%%TAO%%include/orbsvcs/RTCosSchedulingC.inl
%%TAO%%include/orbsvcs/RTCosSchedulingS.cpp
%%TAO%%include/orbsvcs/RTCosSchedulingS.h
-%%TAO%%include/orbsvcs/RTCosSchedulingS.i
+%%TAO%%include/orbsvcs/RTCosSchedulingS.inl
+%%TAO%%include/orbsvcs/RTCosSchedulingS_T.cpp
+%%TAO%%include/orbsvcs/RTCosSchedulingS_T.h
+%%TAO%%include/orbsvcs/RTCosSchedulingS_T.inl
%%TAO%%include/orbsvcs/RTEventLogAdmin.idl
%%TAO%%include/orbsvcs/RTEventLogAdminC.cpp
%%TAO%%include/orbsvcs/RTEventLogAdminC.h
-%%TAO%%include/orbsvcs/RTEventLogAdminC.i
+%%TAO%%include/orbsvcs/RTEventLogAdminC.inl
%%TAO%%include/orbsvcs/RTEventLogAdminS.cpp
%%TAO%%include/orbsvcs/RTEventLogAdminS.h
-%%TAO%%include/orbsvcs/RTEventLogAdminS.i
+%%TAO%%include/orbsvcs/RTEventLogAdminS.inl
%%TAO%%include/orbsvcs/RTEventLogAdminS_T.cpp
%%TAO%%include/orbsvcs/RTEventLogAdminS_T.h
-%%TAO%%include/orbsvcs/RTEventLogAdminS_T.i
+%%TAO%%include/orbsvcs/RTEventLogAdminS_T.inl
%%TAO%%include/orbsvcs/RtecBase.idl
%%TAO%%include/orbsvcs/RtecBaseC.cpp
%%TAO%%include/orbsvcs/RtecBaseC.h
-%%TAO%%include/orbsvcs/RtecBaseC.i
+%%TAO%%include/orbsvcs/RtecBaseC.inl
%%TAO%%include/orbsvcs/RtecBaseS.cpp
%%TAO%%include/orbsvcs/RtecBaseS.h
-%%TAO%%include/orbsvcs/RtecBaseS.i
+%%TAO%%include/orbsvcs/RtecBaseS.inl
%%TAO%%include/orbsvcs/RtecBaseS_T.cpp
%%TAO%%include/orbsvcs/RtecBaseS_T.h
-%%TAO%%include/orbsvcs/RtecBaseS_T.i
+%%TAO%%include/orbsvcs/RtecBaseS_T.inl
%%TAO%%include/orbsvcs/RtecDefaultEventData.idl
%%TAO%%include/orbsvcs/RtecDefaultEventDataC.cpp
%%TAO%%include/orbsvcs/RtecDefaultEventDataC.h
-%%TAO%%include/orbsvcs/RtecDefaultEventDataC.i
+%%TAO%%include/orbsvcs/RtecDefaultEventDataC.inl
%%TAO%%include/orbsvcs/RtecDefaultEventDataS.cpp
%%TAO%%include/orbsvcs/RtecDefaultEventDataS.h
-%%TAO%%include/orbsvcs/RtecDefaultEventDataS.i
+%%TAO%%include/orbsvcs/RtecDefaultEventDataS.inl
%%TAO%%include/orbsvcs/RtecDefaultEventDataS_T.cpp
%%TAO%%include/orbsvcs/RtecDefaultEventDataS_T.h
-%%TAO%%include/orbsvcs/RtecDefaultEventDataS_T.i
+%%TAO%%include/orbsvcs/RtecDefaultEventDataS_T.inl
%%TAO%%include/orbsvcs/RtecEventChannelAdmin.idl
%%TAO%%include/orbsvcs/RtecEventChannelAdminC.cpp
%%TAO%%include/orbsvcs/RtecEventChannelAdminC.h
-%%TAO%%include/orbsvcs/RtecEventChannelAdminC.i
+%%TAO%%include/orbsvcs/RtecEventChannelAdminC.inl
%%TAO%%include/orbsvcs/RtecEventChannelAdminS.cpp
%%TAO%%include/orbsvcs/RtecEventChannelAdminS.h
-%%TAO%%include/orbsvcs/RtecEventChannelAdminS.i
+%%TAO%%include/orbsvcs/RtecEventChannelAdminS.inl
%%TAO%%include/orbsvcs/RtecEventChannelAdminS_T.cpp
%%TAO%%include/orbsvcs/RtecEventChannelAdminS_T.h
-%%TAO%%include/orbsvcs/RtecEventChannelAdminS_T.i
+%%TAO%%include/orbsvcs/RtecEventChannelAdminS_T.inl
%%TAO%%include/orbsvcs/RtecEventComm.idl
%%TAO%%include/orbsvcs/RtecEventCommC.cpp
%%TAO%%include/orbsvcs/RtecEventCommC.h
-%%TAO%%include/orbsvcs/RtecEventCommC.i
+%%TAO%%include/orbsvcs/RtecEventCommC.inl
%%TAO%%include/orbsvcs/RtecEventCommS.cpp
%%TAO%%include/orbsvcs/RtecEventCommS.h
-%%TAO%%include/orbsvcs/RtecEventCommS.i
+%%TAO%%include/orbsvcs/RtecEventCommS.inl
%%TAO%%include/orbsvcs/RtecEventCommS_T.cpp
%%TAO%%include/orbsvcs/RtecEventCommS_T.h
-%%TAO%%include/orbsvcs/RtecEventCommS_T.i
+%%TAO%%include/orbsvcs/RtecEventCommS_T.inl
%%TAO%%include/orbsvcs/RtecScheduler.idl
%%TAO%%include/orbsvcs/RtecSchedulerC.cpp
%%TAO%%include/orbsvcs/RtecSchedulerC.h
-%%TAO%%include/orbsvcs/RtecSchedulerC.i
+%%TAO%%include/orbsvcs/RtecSchedulerC.inl
%%TAO%%include/orbsvcs/RtecSchedulerS.cpp
%%TAO%%include/orbsvcs/RtecSchedulerS.h
-%%TAO%%include/orbsvcs/RtecSchedulerS.i
+%%TAO%%include/orbsvcs/RtecSchedulerS.inl
%%TAO%%include/orbsvcs/RtecSchedulerS_T.cpp
%%TAO%%include/orbsvcs/RtecSchedulerS_T.h
-%%TAO%%include/orbsvcs/RtecSchedulerS_T.i
+%%TAO%%include/orbsvcs/RtecSchedulerS_T.inl
%%TAO%%include/orbsvcs/RtecUDPAdmin.idl
%%TAO%%include/orbsvcs/RtecUDPAdminC.cpp
%%TAO%%include/orbsvcs/RtecUDPAdminC.h
-%%TAO%%include/orbsvcs/RtecUDPAdminC.i
+%%TAO%%include/orbsvcs/RtecUDPAdminC.inl
%%TAO%%include/orbsvcs/RtecUDPAdminS.cpp
%%TAO%%include/orbsvcs/RtecUDPAdminS.h
-%%TAO%%include/orbsvcs/RtecUDPAdminS.i
+%%TAO%%include/orbsvcs/RtecUDPAdminS.inl
%%TAO%%include/orbsvcs/RtecUDPAdminS_T.cpp
%%TAO%%include/orbsvcs/RtecUDPAdminS_T.h
-%%TAO%%include/orbsvcs/RtecUDPAdminS_T.i
+%%TAO%%include/orbsvcs/RtecUDPAdminS_T.inl
%%TAO%%include/orbsvcs/Runtime_Scheduler.cpp
%%TAO%%include/orbsvcs/Runtime_Scheduler.h
%%TAO%%include/orbsvcs/Runtime_Scheduler.i
+%%TAO%%include/orbsvcs/SL3CSI.idl
+%%TAO%%include/orbsvcs/SL3TCPIP.idl
+%%TAO%%include/orbsvcs/SL3TLS.idl
%%TAO%%include/orbsvcs/SSLIOP.idl
%%TAO%%include/orbsvcs/SSLIOP/IIOP_SSL_Acceptor.cpp
%%TAO%%include/orbsvcs/SSLIOP/IIOP_SSL_Acceptor.h
@@ -3025,6 +3144,8 @@ include/ace/svc_export.h
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Acceptor.cpp
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Acceptor.h
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Acceptor.i
+%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_ClientCredentials.cpp
+%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_ClientCredentials.h
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.h
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.i
@@ -3033,6 +3154,10 @@ include/ace/svc_export.h
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Credentials.cpp
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Credentials.h
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Credentials.inl
+%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_CredentialsAcquirer.cpp
+%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_CredentialsAcquirer.h
+%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_CredentialsAcquirerFactory.cpp
+%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_CredentialsAcquirerFactory.h
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Current.cpp
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Current.h
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Current.inl
@@ -3052,19 +3177,17 @@ include/ace/svc_export.h
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Invocation_Interceptor.h
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_ORBInitializer.cpp
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_ORBInitializer.h
+%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_OwnCredentials.cpp
+%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_OwnCredentials.h
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Profile.cpp
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Profile.h
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Profile.i
-%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_ReceivedCredentials.cpp
-%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_ReceivedCredentials.h
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_TargetCredentials.cpp
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_TargetCredentials.h
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Transport.cpp
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Transport.h
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Util.cpp
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Util.h
-%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Vault.cpp
-%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_Vault.h
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_X509.cpp
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_X509.h
%%TAO%%include/orbsvcs/SSLIOP/SSLIOP_X509.inl
@@ -3074,13 +3197,13 @@ include/ace/svc_export.h
%%TAO%%include/orbsvcs/SSLIOP/ssl_endpoints.pidl
%%TAO%%include/orbsvcs/SSLIOPC.cpp
%%TAO%%include/orbsvcs/SSLIOPC.h
-%%TAO%%include/orbsvcs/SSLIOPC.i
+%%TAO%%include/orbsvcs/SSLIOPC.inl
%%TAO%%include/orbsvcs/SSLIOPS.cpp
%%TAO%%include/orbsvcs/SSLIOPS.h
-%%TAO%%include/orbsvcs/SSLIOPS.i
+%%TAO%%include/orbsvcs/SSLIOPS.inl
%%TAO%%include/orbsvcs/SSLIOPS_T.cpp
%%TAO%%include/orbsvcs/SSLIOPS_T.h
-%%TAO%%include/orbsvcs/SSLIOPS_T.i
+%%TAO%%include/orbsvcs/SSLIOPS_T.inl
%%TAO%%include/orbsvcs/Sched/Config_Scheduler.cpp
%%TAO%%include/orbsvcs/Sched/Config_Scheduler.h
%%TAO%%include/orbsvcs/Sched/Config_Scheduler.i
@@ -3119,18 +3242,29 @@ include/ace/svc_export.h
%%TAO%%include/orbsvcs/Scheduler_Utilities.h
%%TAO%%include/orbsvcs/Scheduler_Utilities.i
%%TAO%%include/orbsvcs/Security.idl
-%%TAO%%include/orbsvcs/Security/EstablishTrustPolicy.cpp
-%%TAO%%include/orbsvcs/Security/EstablishTrustPolicy.h
-%%TAO%%include/orbsvcs/Security/InvocationCredentialsPolicy.cpp
-%%TAO%%include/orbsvcs/Security/InvocationCredentialsPolicy.h
-%%TAO%%include/orbsvcs/Security/MechanismPolicy.cpp
-%%TAO%%include/orbsvcs/Security/MechanismPolicy.h
-%%TAO%%include/orbsvcs/Security/PrincipalAuthenticator.cpp
-%%TAO%%include/orbsvcs/Security/PrincipalAuthenticator.h
-%%TAO%%include/orbsvcs/Security/QOPPolicy.cpp
-%%TAO%%include/orbsvcs/Security/QOPPolicy.h
-%%TAO%%include/orbsvcs/Security/SecurityManager.cpp
-%%TAO%%include/orbsvcs/Security/SecurityManager.h
+%%TAO%%include/orbsvcs/Security/CSI_Utils.cpp
+%%TAO%%include/orbsvcs/Security/CSI_Utils.h
+%%TAO%%include/orbsvcs/Security/SL2_EstablishTrustPolicy.cpp
+%%TAO%%include/orbsvcs/Security/SL2_EstablishTrustPolicy.h
+%%TAO%%include/orbsvcs/Security/SL2_QOPPolicy.cpp
+%%TAO%%include/orbsvcs/Security/SL2_QOPPolicy.h
+%%TAO%%include/orbsvcs/Security/SL3_ContextEstablishmentPolicy.cpp
+%%TAO%%include/orbsvcs/Security/SL3_ContextEstablishmentPolicy.h
+%%TAO%%include/orbsvcs/Security/SL3_CredentialsAcquirerFactory.cpp
+%%TAO%%include/orbsvcs/Security/SL3_CredentialsAcquirerFactory.h
+%%TAO%%include/orbsvcs/Security/SL3_CredentialsCurator.cpp
+%%TAO%%include/orbsvcs/Security/SL3_CredentialsCurator.h
+%%TAO%%include/orbsvcs/Security/SL3_ObjectCredentialsPolicy.cpp
+%%TAO%%include/orbsvcs/Security/SL3_ObjectCredentialsPolicy.h
+%%TAO%%include/orbsvcs/Security/SL3_PolicyFactory.cpp
+%%TAO%%include/orbsvcs/Security/SL3_PolicyFactory.h
+%%TAO%%include/orbsvcs/Security/SL3_SecurityCurrent.cpp
+%%TAO%%include/orbsvcs/Security/SL3_SecurityCurrent.h
+%%TAO%%include/orbsvcs/Security/SL3_SecurityCurrent.inl
+%%TAO%%include/orbsvcs/Security/SL3_SecurityCurrent_Impl.cpp
+%%TAO%%include/orbsvcs/Security/SL3_SecurityCurrent_Impl.h
+%%TAO%%include/orbsvcs/Security/SL3_SecurityManager.cpp
+%%TAO%%include/orbsvcs/Security/SL3_SecurityManager.h
%%TAO%%include/orbsvcs/Security/Security_Current.cpp
%%TAO%%include/orbsvcs/Security/Security_Current.h
%%TAO%%include/orbsvcs/Security/Security_Current.inl
@@ -3144,43 +3278,44 @@ include/ace/svc_export.h
%%TAO%%include/orbsvcs/SecurityAdmin.idl
%%TAO%%include/orbsvcs/SecurityC.cpp
%%TAO%%include/orbsvcs/SecurityC.h
-%%TAO%%include/orbsvcs/SecurityC.i
+%%TAO%%include/orbsvcs/SecurityC.inl
%%TAO%%include/orbsvcs/SecurityLevel1.idl
%%TAO%%include/orbsvcs/SecurityLevel1C.cpp
%%TAO%%include/orbsvcs/SecurityLevel1C.h
-%%TAO%%include/orbsvcs/SecurityLevel1C.i
+%%TAO%%include/orbsvcs/SecurityLevel1C.inl
%%TAO%%include/orbsvcs/SecurityLevel1S.cpp
%%TAO%%include/orbsvcs/SecurityLevel1S.h
-%%TAO%%include/orbsvcs/SecurityLevel1S.i
+%%TAO%%include/orbsvcs/SecurityLevel1S.inl
%%TAO%%include/orbsvcs/SecurityLevel1S_T.cpp
%%TAO%%include/orbsvcs/SecurityLevel1S_T.h
-%%TAO%%include/orbsvcs/SecurityLevel1S_T.i
+%%TAO%%include/orbsvcs/SecurityLevel1S_T.inl
%%TAO%%include/orbsvcs/SecurityLevel2.idl
%%TAO%%include/orbsvcs/SecurityLevel2C.cpp
%%TAO%%include/orbsvcs/SecurityLevel2C.h
-%%TAO%%include/orbsvcs/SecurityLevel2C.i
+%%TAO%%include/orbsvcs/SecurityLevel2C.inl
%%TAO%%include/orbsvcs/SecurityLevel2S.cpp
%%TAO%%include/orbsvcs/SecurityLevel2S.h
-%%TAO%%include/orbsvcs/SecurityLevel2S.i
+%%TAO%%include/orbsvcs/SecurityLevel2S.inl
%%TAO%%include/orbsvcs/SecurityLevel2S_T.cpp
%%TAO%%include/orbsvcs/SecurityLevel2S_T.h
-%%TAO%%include/orbsvcs/SecurityLevel2S_T.i
+%%TAO%%include/orbsvcs/SecurityLevel2S_T.inl
+%%TAO%%include/orbsvcs/SecurityLevel3.idl
+%%TAO%%include/orbsvcs/SecurityLevel3C.cpp
+%%TAO%%include/orbsvcs/SecurityLevel3C.h
+%%TAO%%include/orbsvcs/SecurityLevel3C.inl
+%%TAO%%include/orbsvcs/SecurityLevel3S.cpp
+%%TAO%%include/orbsvcs/SecurityLevel3S.h
+%%TAO%%include/orbsvcs/SecurityLevel3S.inl
+%%TAO%%include/orbsvcs/SecurityLevel3S_T.cpp
+%%TAO%%include/orbsvcs/SecurityLevel3S_T.h
+%%TAO%%include/orbsvcs/SecurityLevel3S_T.inl
%%TAO%%include/orbsvcs/SecurityReplaceable.idl
-%%TAO%%include/orbsvcs/SecurityReplaceableC.cpp
-%%TAO%%include/orbsvcs/SecurityReplaceableC.h
-%%TAO%%include/orbsvcs/SecurityReplaceableC.i
-%%TAO%%include/orbsvcs/SecurityReplaceableS.cpp
-%%TAO%%include/orbsvcs/SecurityReplaceableS.h
-%%TAO%%include/orbsvcs/SecurityReplaceableS.i
-%%TAO%%include/orbsvcs/SecurityReplaceableS_T.cpp
-%%TAO%%include/orbsvcs/SecurityReplaceableS_T.h
-%%TAO%%include/orbsvcs/SecurityReplaceableS_T.i
%%TAO%%include/orbsvcs/SecurityS.cpp
%%TAO%%include/orbsvcs/SecurityS.h
-%%TAO%%include/orbsvcs/SecurityS.i
+%%TAO%%include/orbsvcs/SecurityS.inl
%%TAO%%include/orbsvcs/SecurityS_T.cpp
%%TAO%%include/orbsvcs/SecurityS_T.h
-%%TAO%%include/orbsvcs/SecurityS_T.i
+%%TAO%%include/orbsvcs/SecurityS_T.inl
%%TAO%%include/orbsvcs/Time/TAO_TIO.cpp
%%TAO%%include/orbsvcs/Time/TAO_TIO.h
%%TAO%%include/orbsvcs/Time/TAO_Time_Service_Clerk.cpp
@@ -3195,23 +3330,23 @@ include/ace/svc_export.h
%%TAO%%include/orbsvcs/TimeBase.idl
%%TAO%%include/orbsvcs/TimeBaseC.cpp
%%TAO%%include/orbsvcs/TimeBaseC.h
-%%TAO%%include/orbsvcs/TimeBaseC.i
+%%TAO%%include/orbsvcs/TimeBaseC.inl
%%TAO%%include/orbsvcs/TimeBaseS.cpp
%%TAO%%include/orbsvcs/TimeBaseS.h
-%%TAO%%include/orbsvcs/TimeBaseS.i
+%%TAO%%include/orbsvcs/TimeBaseS.inl
%%TAO%%include/orbsvcs/TimeBaseS_T.cpp
%%TAO%%include/orbsvcs/TimeBaseS_T.h
-%%TAO%%include/orbsvcs/TimeBaseS_T.i
+%%TAO%%include/orbsvcs/TimeBaseS_T.inl
%%TAO%%include/orbsvcs/TimeService.idl
%%TAO%%include/orbsvcs/TimeServiceC.cpp
%%TAO%%include/orbsvcs/TimeServiceC.h
-%%TAO%%include/orbsvcs/TimeServiceC.i
+%%TAO%%include/orbsvcs/TimeServiceC.inl
%%TAO%%include/orbsvcs/TimeServiceS.cpp
%%TAO%%include/orbsvcs/TimeServiceS.h
-%%TAO%%include/orbsvcs/TimeServiceS.i
+%%TAO%%include/orbsvcs/TimeServiceS.inl
%%TAO%%include/orbsvcs/TimeServiceS_T.cpp
%%TAO%%include/orbsvcs/TimeServiceS_T.h
-%%TAO%%include/orbsvcs/TimeServiceS_T.i
+%%TAO%%include/orbsvcs/TimeServiceS_T.inl
%%TAO%%include/orbsvcs/Time_Utilities.cpp
%%TAO%%include/orbsvcs/Time_Utilities.h
%%TAO%%include/orbsvcs/Time_Utilities.i
@@ -3255,24 +3390,24 @@ include/ace/svc_export.h
%%TAO%%include/orbsvcs/miop.idl
%%TAO%%include/orbsvcs/miopC.cpp
%%TAO%%include/orbsvcs/miopC.h
-%%TAO%%include/orbsvcs/miopC.i
+%%TAO%%include/orbsvcs/miopC.inl
%%TAO%%include/orbsvcs/miopS.cpp
%%TAO%%include/orbsvcs/miopS.h
-%%TAO%%include/orbsvcs/miopS.i
+%%TAO%%include/orbsvcs/miopS.inl
%%TAO%%include/orbsvcs/miopS_T.cpp
%%TAO%%include/orbsvcs/miopS_T.h
-%%TAO%%include/orbsvcs/miopS_T.i
+%%TAO%%include/orbsvcs/miopS_T.inl
%%TAO%%include/orbsvcs/orbsvcs_export.h
%%TAO%%include/orbsvcs/sfp.idl
%%TAO%%include/orbsvcs/sfpC.cpp
%%TAO%%include/orbsvcs/sfpC.h
-%%TAO%%include/orbsvcs/sfpC.i
+%%TAO%%include/orbsvcs/sfpC.inl
%%TAO%%include/orbsvcs/sfpS.cpp
%%TAO%%include/orbsvcs/sfpS.h
-%%TAO%%include/orbsvcs/sfpS.i
+%%TAO%%include/orbsvcs/sfpS.inl
%%TAO%%include/orbsvcs/sfpS_T.cpp
%%TAO%%include/orbsvcs/sfpS_T.h
-%%TAO%%include/orbsvcs/sfpS_T.i
+%%TAO%%include/orbsvcs/sfpS_T.inl
%%TAO%%include/orbsvcs/svc_utils_export.h
%%TAO%%include/tao/Abstract_Servant_Base.cpp
%%TAO%%include/tao/Abstract_Servant_Base.h
@@ -3288,9 +3423,16 @@ include/ace/svc_export.h
%%TAO%%include/tao/Adapter.cpp
%%TAO%%include/tao/Adapter.h
%%TAO%%include/tao/Adapter.i
+%%TAO%%include/tao/Allocator.h
%%TAO%%include/tao/Any.cpp
%%TAO%%include/tao/Any.h
%%TAO%%include/tao/Any.i
+%%TAO%%include/tao/AnySeq.pidl
+%%TAO%%include/tao/AnySeqA.cpp
+%%TAO%%include/tao/AnySeqC.cpp
+%%TAO%%include/tao/AnySeqC.h
+%%TAO%%include/tao/AnySeqC.inl
+%%TAO%%include/tao/AnySeqS.h
%%TAO%%include/tao/Any_Array_Impl_T.cpp
%%TAO%%include/tao/Any_Array_Impl_T.h
%%TAO%%include/tao/Any_Array_Impl_T.inl
@@ -3325,9 +3467,7 @@ include/ace/svc_export.h
%%TAO%%include/tao/Asynch_Reply_Dispatcher_Base.cpp
%%TAO%%include/tao/Asynch_Reply_Dispatcher_Base.h
%%TAO%%include/tao/Asynch_Reply_Dispatcher_Base.i
-%%TAO%%include/tao/Auto_Functor.cpp
%%TAO%%include/tao/Auto_Functor.h
-%%TAO%%include/tao/Auto_Functor.inl
%%TAO%%include/tao/BD_String_Argument_T.cpp
%%TAO%%include/tao/BD_String_Argument_T.h
%%TAO%%include/tao/BD_String_Argument_T.inl
@@ -3381,10 +3521,11 @@ include/ace/svc_export.h
%%TAO%%include/tao/BooleanSeqS.h
%%TAO%%include/tao/Bounds.pidl
%%TAO%%include/tao/BoundsA.cpp
-%%TAO%%include/tao/BoundsA.h
%%TAO%%include/tao/BoundsC.cpp
%%TAO%%include/tao/BoundsC.h
%%TAO%%include/tao/BoundsC.i
+%%TAO%%include/tao/Buffer_Allocator_T.cpp
+%%TAO%%include/tao/Buffer_Allocator_T.h
%%TAO%%include/tao/Buffering_Constraint_Policy.cpp
%%TAO%%include/tao/Buffering_Constraint_Policy.h
%%TAO%%include/tao/Buffering_Constraint_Policy.i
@@ -3395,7 +3536,6 @@ include/ace/svc_export.h
%%TAO%%include/tao/CDR_Encaps_Codec.h
%%TAO%%include/tao/CONV_FRAME.pidl
%%TAO%%include/tao/CONV_FRAMEA.cpp
-%%TAO%%include/tao/CONV_FRAMEA.h
%%TAO%%include/tao/CONV_FRAMEC.cpp
%%TAO%%include/tao/CONV_FRAMEC.h
%%TAO%%include/tao/CONV_FRAMEC.i
@@ -3419,6 +3559,12 @@ include/ace/svc_export.h
%%TAO%%include/tao/Cache_Entries.cpp
%%TAO%%include/tao/Cache_Entries.h
%%TAO%%include/tao/Cache_Entries.inl
+%%TAO%%include/tao/CharSeq.pidl
+%%TAO%%include/tao/CharSeqA.cpp
+%%TAO%%include/tao/CharSeqC.cpp
+%%TAO%%include/tao/CharSeqC.h
+%%TAO%%include/tao/CharSeqC.inl
+%%TAO%%include/tao/CharSeqS.h
%%TAO%%include/tao/Cleanup_Func_Registry.cpp
%%TAO%%include/tao/Cleanup_Func_Registry.h
%%TAO%%include/tao/Cleanup_Func_Registry.inl
@@ -3469,7 +3615,6 @@ include/ace/svc_export.h
%%TAO%%include/tao/Connector_Registry.i
%%TAO%%include/tao/Current.pidl
%%TAO%%include/tao/CurrentA.cpp
-%%TAO%%include/tao/CurrentA.h
%%TAO%%include/tao/CurrentC.cpp
%%TAO%%include/tao/CurrentC.h
%%TAO%%include/tao/CurrentC.i
@@ -3501,13 +3646,17 @@ include/ace/svc_export.h
%%TAO%%include/tao/Domain/DomainS_T.i
%%TAO%%include/tao/Domain/domain_export.h
%%TAO%%include/tao/DomainA.cpp
-%%TAO%%include/tao/DomainA.h
%%TAO%%include/tao/DomainC.cpp
%%TAO%%include/tao/DomainC.h
%%TAO%%include/tao/DomainC.i
+%%TAO%%include/tao/DoubleSeq.pidl
+%%TAO%%include/tao/DoubleSeqA.cpp
+%%TAO%%include/tao/DoubleSeqC.cpp
+%%TAO%%include/tao/DoubleSeqC.h
+%%TAO%%include/tao/DoubleSeqC.inl
+%%TAO%%include/tao/DoubleSeqS.h
%%TAO%%include/tao/Dynamic.pidl
%%TAO%%include/tao/DynamicA.cpp
-%%TAO%%include/tao/DynamicA.h
%%TAO%%include/tao/DynamicAny/DynAnyFactory.cpp
%%TAO%%include/tao/DynamicAny/DynAnyFactory.h
%%TAO%%include/tao/DynamicAny/DynAny_i.cpp
@@ -3540,6 +3689,7 @@ include/ace/svc_export.h
%%TAO%%include/tao/DynamicInterface/DII_Arguments.cpp
%%TAO%%include/tao/DynamicInterface/DII_Arguments.h
%%TAO%%include/tao/DynamicInterface/DII_Arguments.inl
+%%TAO%%include/tao/DynamicInterface/DII_CORBA_methods.h
%%TAO%%include/tao/DynamicInterface/DII_Invocation.cpp
%%TAO%%include/tao/DynamicInterface/DII_Invocation.h
%%TAO%%include/tao/DynamicInterface/DII_Invocation.inl
@@ -3567,11 +3717,9 @@ include/ace/svc_export.h
%%TAO%%include/tao/Dynamic_Adapter.h
%%TAO%%include/tao/Dynamic_Parameter.pidl
%%TAO%%include/tao/Dynamic_ParameterA.cpp
-%%TAO%%include/tao/Dynamic_ParameterA.h
%%TAO%%include/tao/Dynamic_ParameterC.cpp
%%TAO%%include/tao/Dynamic_ParameterC.h
%%TAO%%include/tao/Dynamic_ParameterC.i
-%%TAO%%include/tao/Dynamic_ParameterC.inl
%%TAO%%include/tao/Encodable.cpp
%%TAO%%include/tao/Encodable.h
%%TAO%%include/tao/Endpoint.cpp
@@ -3616,7 +3764,6 @@ include/ace/svc_export.h
%%TAO%%include/tao/Flushing_Strategy.h
%%TAO%%include/tao/GIOP.pidl
%%TAO%%include/tao/GIOPA.cpp
-%%TAO%%include/tao/GIOPA.h
%%TAO%%include/tao/GIOPC.cpp
%%TAO%%include/tao/GIOPC.h
%%TAO%%include/tao/GIOPC.i
@@ -3660,21 +3807,25 @@ include/ace/svc_export.h
%%TAO%%include/tao/GIOP_Utils.h
%%TAO%%include/tao/GIOP_Utils.i
%%TAO%%include/tao/IFR_Client/IFR_Base.pidl
+%%TAO%%include/tao/IFR_Client/IFR_BaseA.cpp
%%TAO%%include/tao/IFR_Client/IFR_BaseC.cpp
%%TAO%%include/tao/IFR_Client/IFR_BaseC.h
%%TAO%%include/tao/IFR_Client/IFR_BaseC.i
%%TAO%%include/tao/IFR_Client/IFR_BaseS.h
%%TAO%%include/tao/IFR_Client/IFR_Basic.pidl
+%%TAO%%include/tao/IFR_Client/IFR_BasicA.cpp
%%TAO%%include/tao/IFR_Client/IFR_BasicC.cpp
%%TAO%%include/tao/IFR_Client/IFR_BasicC.h
%%TAO%%include/tao/IFR_Client/IFR_BasicC.i
%%TAO%%include/tao/IFR_Client/IFR_Client_Adapter_Impl.cpp
%%TAO%%include/tao/IFR_Client/IFR_Client_Adapter_Impl.h
%%TAO%%include/tao/IFR_Client/IFR_Components.pidl
+%%TAO%%include/tao/IFR_Client/IFR_ComponentsA.cpp
%%TAO%%include/tao/IFR_Client/IFR_ComponentsC.cpp
%%TAO%%include/tao/IFR_Client/IFR_ComponentsC.h
%%TAO%%include/tao/IFR_Client/IFR_ComponentsC.i
%%TAO%%include/tao/IFR_Client/IFR_Extended.pidl
+%%TAO%%include/tao/IFR_Client/IFR_ExtendedA.cpp
%%TAO%%include/tao/IFR_Client/IFR_ExtendedC.cpp
%%TAO%%include/tao/IFR_Client/IFR_ExtendedC.h
%%TAO%%include/tao/IFR_Client/IFR_ExtendedC.i
@@ -3683,7 +3834,6 @@ include/ace/svc_export.h
%%TAO%%include/tao/IFR_Client_Adapter.h
%%TAO%%include/tao/IIOP.pidl
%%TAO%%include/tao/IIOPA.cpp
-%%TAO%%include/tao/IIOPA.h
%%TAO%%include/tao/IIOPC.cpp
%%TAO%%include/tao/IIOPC.h
%%TAO%%include/tao/IIOPC.i
@@ -3700,11 +3850,9 @@ include/ace/svc_export.h
%%TAO%%include/tao/IIOP_Endpoint.i
%%TAO%%include/tao/IIOP_Endpoints.pidl
%%TAO%%include/tao/IIOP_EndpointsA.cpp
-%%TAO%%include/tao/IIOP_EndpointsA.h
%%TAO%%include/tao/IIOP_EndpointsC.cpp
%%TAO%%include/tao/IIOP_EndpointsC.h
%%TAO%%include/tao/IIOP_EndpointsC.i
-%%TAO%%include/tao/IIOP_EndpointsC.inl
%%TAO%%include/tao/IIOP_Factory.cpp
%%TAO%%include/tao/IIOP_Factory.h
%%TAO%%include/tao/IIOP_Lite_Factory.cpp
@@ -3727,13 +3875,11 @@ include/ace/svc_export.h
%%TAO%%include/tao/IOPS_T.i
%%TAO%%include/tao/IOP_Codec.pidl
%%TAO%%include/tao/IOP_CodecA.cpp
-%%TAO%%include/tao/IOP_CodecA.h
%%TAO%%include/tao/IOP_CodecC.cpp
%%TAO%%include/tao/IOP_CodecC.h
%%TAO%%include/tao/IOP_CodecC.i
%%TAO%%include/tao/IOP_IOR.pidl
%%TAO%%include/tao/IOP_IORA.cpp
-%%TAO%%include/tao/IOP_IORA.h
%%TAO%%include/tao/IOP_IORC.cpp
%%TAO%%include/tao/IOP_IORC.h
%%TAO%%include/tao/IOP_IORC.i
@@ -3754,6 +3900,7 @@ include/ace/svc_export.h
%%TAO%%include/tao/IORInterceptor_Adapter_Factory.cpp
%%TAO%%include/tao/IORInterceptor_Adapter_Factory.h
%%TAO%%include/tao/IORManipulation/IOR.pidl
+%%TAO%%include/tao/IORManipulation/IORA.cpp
%%TAO%%include/tao/IORManipulation/IORC.cpp
%%TAO%%include/tao/IORManipulation/IORC.h
%%TAO%%include/tao/IORManipulation/IORC.i
@@ -3839,6 +3986,24 @@ include/ace/svc_export.h
%%TAO%%include/tao/LocateRequest_Invocation.h
%%TAO%%include/tao/LocateRequest_Invocation_Adapter.cpp
%%TAO%%include/tao/LocateRequest_Invocation_Adapter.h
+%%TAO%%include/tao/LongDoubleSeq.pidl
+%%TAO%%include/tao/LongDoubleSeqA.cpp
+%%TAO%%include/tao/LongDoubleSeqC.cpp
+%%TAO%%include/tao/LongDoubleSeqC.h
+%%TAO%%include/tao/LongDoubleSeqC.inl
+%%TAO%%include/tao/LongDoubleSeqS.h
+%%TAO%%include/tao/LongLongSeq.pidl
+%%TAO%%include/tao/LongLongSeqA.cpp
+%%TAO%%include/tao/LongLongSeqC.cpp
+%%TAO%%include/tao/LongLongSeqC.h
+%%TAO%%include/tao/LongLongSeqC.inl
+%%TAO%%include/tao/LongLongSeqS.h
+%%TAO%%include/tao/LongSeq.pidl
+%%TAO%%include/tao/LongSeqA.cpp
+%%TAO%%include/tao/LongSeqC.cpp
+%%TAO%%include/tao/LongSeqC.h
+%%TAO%%include/tao/LongSeqC.inl
+%%TAO%%include/tao/LongSeqS.h
%%TAO%%include/tao/MCAST_Parser.cpp
%%TAO%%include/tao/MCAST_Parser.h
%%TAO%%include/tao/MCAST_Parser.i
@@ -3901,7 +4066,6 @@ include/ace/svc_export.h
%%TAO%%include/tao/Messaging/messaging_export.h
%%TAO%%include/tao/Messaging_PolicyValue.pidl
%%TAO%%include/tao/Messaging_PolicyValueA.cpp
-%%TAO%%include/tao/Messaging_PolicyValueA.h
%%TAO%%include/tao/Messaging_PolicyValueC.cpp
%%TAO%%include/tao/Messaging_PolicyValueC.h
%%TAO%%include/tao/Messaging_PolicyValueC.i
@@ -3974,19 +4138,15 @@ include/ace/svc_export.h
%%TAO%%include/tao/Objref_VarOut_T.inl
%%TAO%%include/tao/OctetSeq.pidl
%%TAO%%include/tao/OctetSeqA.cpp
-%%TAO%%include/tao/OctetSeqA.h
%%TAO%%include/tao/OctetSeqC.cpp
%%TAO%%include/tao/OctetSeqC.h
-%%TAO%%include/tao/OctetSeqC.i
-%%TAO%%include/tao/OctetSeqS.cpp
+%%TAO%%include/tao/OctetSeqC.inl
%%TAO%%include/tao/OctetSeqS.h
-%%TAO%%include/tao/OctetSeqS.i
-%%TAO%%include/tao/OctetSeqS_T.cpp
-%%TAO%%include/tao/OctetSeqS_T.h
-%%TAO%%include/tao/OctetSeqS_T.i
%%TAO%%include/tao/PICurrent.cpp
%%TAO%%include/tao/PICurrent.h
%%TAO%%include/tao/PICurrent.inl
+%%TAO%%include/tao/PICurrent_Copy_Callback.cpp
+%%TAO%%include/tao/PICurrent_Copy_Callback.h
%%TAO%%include/tao/PICurrent_ORBInitializer.cpp
%%TAO%%include/tao/PICurrent_ORBInitializer.h
%%TAO%%include/tao/PI_Forward.pidl
@@ -3998,8 +4158,6 @@ include/ace/svc_export.h
%%TAO%%include/tao/Parser_Registry.cpp
%%TAO%%include/tao/Parser_Registry.h
%%TAO%%include/tao/Parser_Registry.i
-%%TAO%%include/tao/PICurrent_Copy_Callback.cpp
-%%TAO%%include/tao/PICurrent_Copy_Callback.h
%%TAO%%include/tao/Pluggable_Messaging.cpp
%%TAO%%include/tao/Pluggable_Messaging.h
%%TAO%%include/tao/Pluggable_Messaging.i
@@ -4008,7 +4166,6 @@ include/ace/svc_export.h
%%TAO%%include/tao/Pluggable_Messaging_Utils.i
%%TAO%%include/tao/Policy.pidl
%%TAO%%include/tao/PolicyA.cpp
-%%TAO%%include/tao/PolicyA.h
%%TAO%%include/tao/PolicyC.cpp
%%TAO%%include/tao/PolicyC.h
%%TAO%%include/tao/PolicyC.i
@@ -4017,7 +4174,6 @@ include/ace/svc_export.h
%%TAO%%include/tao/PolicyS.h
%%TAO%%include/tao/Policy_Forward.pidl
%%TAO%%include/tao/Policy_ForwardA.cpp
-%%TAO%%include/tao/Policy_ForwardA.h
%%TAO%%include/tao/Policy_ForwardC.cpp
%%TAO%%include/tao/Policy_ForwardC.h
%%TAO%%include/tao/Policy_ForwardC.i
@@ -4042,7 +4198,6 @@ include/ace/svc_export.h
%%TAO%%include/tao/PortableInterceptor.h
%%TAO%%include/tao/PortableInterceptor.pidl
%%TAO%%include/tao/PortableInterceptorA.cpp
-%%TAO%%include/tao/PortableInterceptorA.h
%%TAO%%include/tao/PortableInterceptorC.cpp
%%TAO%%include/tao/PortableInterceptorC.h
%%TAO%%include/tao/PortableInterceptorC.i
@@ -4064,12 +4219,9 @@ include/ace/svc_export.h
%%TAO%%include/tao/PortableServer/Default_Policy_Validator.h
%%TAO%%include/tao/PortableServer/Default_Servant_Dispatcher.cpp
%%TAO%%include/tao/PortableServer/Default_Servant_Dispatcher.h
-%%TAO%%include/tao/PortableServer/Direct_Object_Proxy_Impl.cpp
-%%TAO%%include/tao/PortableServer/Direct_Object_Proxy_Impl.h
%%TAO%%include/tao/PortableServer/IORInfo.cpp
%%TAO%%include/tao/PortableServer/IORInfo.h
%%TAO%%include/tao/PortableServer/IORInfo.inl
-%%TAO%%include/tao/PortableServer/ImR_Activator.pidl
%%TAO%%include/tao/PortableServer/ImR_Locator.pidl
%%TAO%%include/tao/PortableServer/ImR_LocatorC.cpp
%%TAO%%include/tao/PortableServer/ImR_LocatorC.h
@@ -4127,6 +4279,7 @@ include/ace/svc_export.h
%%TAO%%include/tao/PortableServer/PortableServer.cpp
%%TAO%%include/tao/PortableServer/PortableServer.h
%%TAO%%include/tao/PortableServer/PortableServer.pidl
+%%TAO%%include/tao/PortableServer/PortableServerA.cpp
%%TAO%%include/tao/PortableServer/PortableServerC.cpp
%%TAO%%include/tao/PortableServer/PortableServerC.h
%%TAO%%include/tao/PortableServer/PortableServerC.i
@@ -4146,8 +4299,6 @@ include/ace/svc_export.h
%%TAO%%include/tao/PortableServer/ServerRequestInfo.cpp
%%TAO%%include/tao/PortableServer/ServerRequestInfo.h
%%TAO%%include/tao/PortableServer/ServerRequestInfo.inl
-%%TAO%%include/tao/PortableServer/ThruPOA_Object_Proxy_Impl.cpp
-%%TAO%%include/tao/PortableServer/ThruPOA_Object_Proxy_Impl.h
%%TAO%%include/tao/PortableServer/Upcall_Wrapper.h
%%TAO%%include/tao/PortableServer/poa_macros.h
%%TAO%%include/tao/PortableServer/portableserver_export.h
@@ -4198,7 +4349,6 @@ include/ace/svc_export.h
%%TAO%%include/tao/RTCORBA/Priority_Mapping_Manager.cpp
%%TAO%%include/tao/RTCORBA/Priority_Mapping_Manager.h
%%TAO%%include/tao/RTCORBA/Priority_Mapping_Manager.i
-%%TAO%%include/tao/RTCORBA/RTCORBA_includeS.h
%%TAO%%include/tao/RTCORBA/RTCORBA.cpp
%%TAO%%include/tao/RTCORBA/RTCORBA.h
%%TAO%%include/tao/RTCORBA/RTCORBA.pidl
@@ -4207,6 +4357,7 @@ include/ace/svc_export.h
%%TAO%%include/tao/RTCORBA/RTCORBAC.i
%%TAO%%include/tao/RTCORBA/RTCORBA_include.pidl
%%TAO%%include/tao/RTCORBA/RTCORBA_includeC.h
+%%TAO%%include/tao/RTCORBA/RTCORBA_includeS.h
%%TAO%%include/tao/RTCORBA/RT_Current.cpp
%%TAO%%include/tao/RTCORBA/RT_Current.h
%%TAO%%include/tao/RTCORBA/RT_Current.i
@@ -4257,7 +4408,6 @@ include/ace/svc_export.h
%%TAO%%include/tao/RTPortableServer/RTPortableServer.h
%%TAO%%include/tao/RTPortableServer/RTPortableServer.pidl
%%TAO%%include/tao/RTPortableServer/RTPortableServerA.cpp
-%%TAO%%include/tao/RTPortableServer/RTPortableServerA.h
%%TAO%%include/tao/RTPortableServer/RTPortableServerC.cpp
%%TAO%%include/tao/RTPortableServer/RTPortableServerC.h
%%TAO%%include/tao/RTPortableServer/RTPortableServerC.i
@@ -4345,7 +4495,6 @@ include/ace/svc_export.h
%%TAO%%include/tao/Service_Context.inl
%%TAO%%include/tao/Services.pidl
%%TAO%%include/tao/ServicesA.cpp
-%%TAO%%include/tao/ServicesA.h
%%TAO%%include/tao/ServicesC.cpp
%%TAO%%include/tao/ServicesC.h
%%TAO%%include/tao/ServicesC.i
@@ -4479,10 +4628,9 @@ include/ace/svc_export.h
%%TAO%%include/tao/Strategies/uiop_endpoints.pidl
%%TAO%%include/tao/StringSeq.pidl
%%TAO%%include/tao/StringSeqA.cpp
-%%TAO%%include/tao/StringSeqA.h
%%TAO%%include/tao/StringSeqC.cpp
%%TAO%%include/tao/StringSeqC.h
-%%TAO%%include/tao/StringSeqC.i
+%%TAO%%include/tao/StringSeqC.inl
%%TAO%%include/tao/StringSeqS.h
%%TAO%%include/tao/Stub.cpp
%%TAO%%include/tao/Stub.h
@@ -4504,7 +4652,6 @@ include/ace/svc_export.h
%%TAO%%include/tao/Synch_Reply_Dispatcher.h
%%TAO%%include/tao/TAO.pidl
%%TAO%%include/tao/TAOA.cpp
-%%TAO%%include/tao/TAOA.h
%%TAO%%include/tao/TAOC.cpp
%%TAO%%include/tao/TAOC.h
%%TAO%%include/tao/TAOC.i
@@ -4537,7 +4684,6 @@ include/ace/svc_export.h
%%TAO%%include/tao/Tagged_Profile.i
%%TAO%%include/tao/Thread_Lane_Resources.cpp
%%TAO%%include/tao/Thread_Lane_Resources.h
-%%TAO%%include/tao/Thread_Lane_Resources.i
%%TAO%%include/tao/Thread_Lane_Resources_Manager.cpp
%%TAO%%include/tao/Thread_Lane_Resources_Manager.h
%%TAO%%include/tao/Thread_Lane_Resources_Manager.i
@@ -4545,7 +4691,6 @@ include/ace/svc_export.h
%%TAO%%include/tao/Thread_Per_Connection_Handler.h
%%TAO%%include/tao/TimeBase.pidl
%%TAO%%include/tao/TimeBaseA.cpp
-%%TAO%%include/tao/TimeBaseA.h
%%TAO%%include/tao/TimeBaseC.cpp
%%TAO%%include/tao/TimeBaseC.h
%%TAO%%include/tao/TimeBaseC.i
@@ -4603,20 +4748,29 @@ include/ace/svc_export.h
%%TAO%%include/tao/UB_String_SArgument_T.inl
%%TAO%%include/tao/UB_String_SArguments.cpp
%%TAO%%include/tao/UB_String_SArguments.h
+%%TAO%%include/tao/ULongLongSeq.pidl
+%%TAO%%include/tao/ULongLongSeqA.cpp
+%%TAO%%include/tao/ULongLongSeqC.cpp
+%%TAO%%include/tao/ULongLongSeqC.h
+%%TAO%%include/tao/ULongLongSeqC.inl
+%%TAO%%include/tao/ULongLongSeqS.h
%%TAO%%include/tao/ULongSeq.pidl
%%TAO%%include/tao/ULongSeqA.cpp
%%TAO%%include/tao/ULongSeqC.cpp
%%TAO%%include/tao/ULongSeqC.h
%%TAO%%include/tao/ULongSeqC.i
%%TAO%%include/tao/ULongSeqS.h
-%%TAO%%include/tao/ULongSeqS.i
%%TAO%%include/tao/UShortSeq.pidl
%%TAO%%include/tao/UShortSeqA.cpp
%%TAO%%include/tao/UShortSeqC.cpp
%%TAO%%include/tao/UShortSeqC.h
%%TAO%%include/tao/UShortSeqC.i
%%TAO%%include/tao/UShortSeqS.h
-%%TAO%%include/tao/UShortSeqS.i
+%%TAO%%include/tao/UTF16_BOM_Factory.cpp
+%%TAO%%include/tao/UTF16_BOM_Factory.h
+%%TAO%%include/tao/UTF16_BOM_Translator.cpp
+%%TAO%%include/tao/UTF16_BOM_Translator.h
+%%TAO%%include/tao/Utils/Auto_Functor.h
%%TAO%%include/tao/Utils/Implicit_Deactivator.cpp
%%TAO%%include/tao/Utils/Implicit_Deactivator.h
%%TAO%%include/tao/Utils/ORB_Destroyer.cpp
@@ -4652,6 +4806,7 @@ include/ace/svc_export.h
%%TAO%%include/tao/Valuetype/ValueFactory_Map.cpp
%%TAO%%include/tao/Valuetype/ValueFactory_Map.h
%%TAO%%include/tao/Valuetype/ValueFactory_Map.inl
+%%TAO%%include/tao/Valuetype/Value_CORBA_methods.h
%%TAO%%include/tao/Valuetype/Value_VarOut_T.cpp
%%TAO%%include/tao/Valuetype/Value_VarOut_T.h
%%TAO%%include/tao/Valuetype/Value_VarOut_T.inl
@@ -4676,6 +4831,18 @@ include/ace/svc_export.h
%%TAO%%include/tao/Var_Size_SArgument_T.h
%%TAO%%include/tao/Var_Size_SArgument_T.inl
%%TAO%%include/tao/Version.h
+%%TAO%%include/tao/WCharSeq.pidl
+%%TAO%%include/tao/WCharSeqA.cpp
+%%TAO%%include/tao/WCharSeqC.cpp
+%%TAO%%include/tao/WCharSeqC.h
+%%TAO%%include/tao/WCharSeqC.inl
+%%TAO%%include/tao/WCharSeqS.h
+%%TAO%%include/tao/WStringSeq.pidl
+%%TAO%%include/tao/WStringSeqA.cpp
+%%TAO%%include/tao/WStringSeqC.cpp
+%%TAO%%include/tao/WStringSeqC.h
+%%TAO%%include/tao/WStringSeqC.inl
+%%TAO%%include/tao/WStringSeqS.h
%%TAO%%include/tao/Wait_On_Leader_Follower.cpp
%%TAO%%include/tao/Wait_On_Leader_Follower.h
%%TAO%%include/tao/Wait_On_Reactor.cpp
@@ -4687,7 +4854,6 @@ include/ace/svc_export.h
%%TAO%%include/tao/Wait_Strategy.inl
%%TAO%%include/tao/WrongTransaction.pidl
%%TAO%%include/tao/WrongTransactionA.cpp
-%%TAO%%include/tao/WrongTransactionA.h
%%TAO%%include/tao/WrongTransactionC.cpp
%%TAO%%include/tao/WrongTransactionC.h
%%TAO%%include/tao/WrongTransactionC.i
@@ -4741,32 +4907,44 @@ lib/libACE_RMCast.so
lib/libACE_RMCast.so.%%ACE_VERSION%%
lib/libACE_SSL.so
lib/libACE_SSL.so.%%ACE_VERSION%%
-%%TESTS%%lib/libDLL_Test.so
-%%TESTS%%lib/libDLL_Test.so.%%ACE_VERSION%%
-%%TESTS%%lib/libFramework_Component_DLL.so
-%%TESTS%%lib/libFramework_Component_DLL.so.%%ACE_VERSION%%
+lib/libClient_Test.so
+lib/libClient_Test.so.%%ACE_VERSION%%
+lib/libDump_Restore.so
+lib/libDump_Restore.so.%%ACE_VERSION%%
lib/libGateway.so
lib/libGateway.so.%%ACE_VERSION%%
+lib/libJAWS3.so
+lib/libJAWS3.so.%%ACE_VERSION%%
lib/libKokyu.so
lib/libKokyu.so.%%ACE_VERSION%%
-lib/libPeer.so
-lib/libPeer.so.%%ACE_VERSION%%
-%%TESTS%%lib/libService_Config_DLL.so
-%%TESTS%%lib/libService_Config_DLL.so.%%ACE_VERSION%%
-%%TESTS%%lib/libTest_Output.so
-%%TESTS%%lib/libTest_Output.so.%%ACE_VERSION%%
+lib/libTMCast.so
+lib/libTMCast.so.%%ACE_VERSION%%
+lib/libasnmp.so
+lib/libasnmp.so.%%ACE_VERSION%%
lib/libnetsvcs.so
lib/libnetsvcs.so.%%ACE_VERSION%%
lib/libwebsvcs.so
lib/libwebsvcs.so.%%ACE_VERSION%%
-lib/libClient_Test.so
-lib/libClient_Test.so.%%ACE_VERSION%%
+%%TESTS%%lib/libDLL_Test.so
+%%TESTS%%lib/libDLL_Test.so.%%ACE_VERSION%%
+%%TESTS%%lib/libFramework_Component_DLL.so
+%%TESTS%%lib/libFramework_Component_DLL.so.%%ACE_VERSION%%
+%%TESTS%%lib/libService_Config_DLL.so
+%%TESTS%%lib/libService_Config_DLL.so.%%ACE_VERSION%%
+%%TESTS%%lib/libTest_Output.so
+%%TESTS%%lib/libTest_Output.so.%%ACE_VERSION%%
%%TAO%%%%TESTS%%lib/libCollocation_Diamond.so
%%TAO%%%%TESTS%%lib/libCollocation_Diamond.so.%%TAO_VERSION%%
%%TAO%%%%TESTS%%lib/libDiamond.so
%%TAO%%%%TESTS%%lib/libDiamond.so.%%TAO_VERSION%%
%%TAO%%%%TESTS%%lib/libIBM1047_ISO8859.so
%%TAO%%%%TESTS%%lib/libIBM1047_ISO8859.so.%%TAO_VERSION%%
+%%TAO%%%%TESTS%%lib/libTAO_TS.so
+%%TAO%%%%TESTS%%lib/libTAO_TS.so.%%TAO_VERSION%%
+%%TAO%%%%TESTS%%lib/libUCS4_UTF16.so
+%%TAO%%%%TESTS%%lib/libUCS4_UTF16.so.%%TAO_VERSION%%
+%%TAO%%%%TESTS%%lib/libtestSched_Common.so
+%%TAO%%%%TESTS%%lib/libtestSched_Common.so.%%TAO_VERSION%%
%%TAO%%lib/libTAO.so
%%TAO%%lib/libTAO.so.%%TAO_VERSION%%
%%TAO%%lib/libTAO_AV.so
@@ -4805,18 +4983,28 @@ lib/libClient_Test.so.%%ACE_VERSION%%
%%TAO%%lib/libTAO_DynamicInterface.so.%%TAO_VERSION%%
%%TAO%%lib/libTAO_ETCL.so
%%TAO%%lib/libTAO_ETCL.so.%%TAO_VERSION%%
-%%TAO%%lib/libTAO_FTORB.so
-%%TAO%%lib/libTAO_FTORB.so.%%TAO_VERSION%%
+%%TAO%%lib/libTAO_FTORB_Utils.so
+%%TAO%%lib/libTAO_FTORB_Utils.so.%%TAO_VERSION%%
+%%TAO%%lib/libTAO_FTRT_ClientORB.so
+%%TAO%%lib/libTAO_FTRT_ClientORB.so.%%TAO_VERSION%%
+%%TAO%%lib/libTAO_FTRT_EventChannel.so
+%%TAO%%lib/libTAO_FTRT_EventChannel.so.%%TAO_VERSION%%
+%%TAO%%lib/libTAO_FT_ClientORB.so
+%%TAO%%lib/libTAO_FT_ClientORB.so.%%TAO_VERSION%%
+%%TAO%%lib/libTAO_FT_ServerORB.so
+%%TAO%%lib/libTAO_FT_ServerORB.so.%%TAO_VERSION%%
%%TAO%%lib/libTAO_FaultTolerance.so
%%TAO%%lib/libTAO_FaultTolerance.so.%%TAO_VERSION%%
-%%TAO%%lib/libTAO_IDL_BE_DLL.so
-%%TAO%%lib/libTAO_IDL_BE_DLL.so.%%ACE_VERSION%%
-%%TAO%%lib/libTAO_IDL_FE_DLL.so
-%%TAO%%lib/libTAO_IDL_FE_DLL.so.%%ACE_VERSION%%
+%%TAO%%lib/libTAO_FtRtEvent.so
+%%TAO%%lib/libTAO_FtRtEvent.so.%%TAO_VERSION%%
+%%TAO%%lib/libTAO_IDL_BE.so
+%%TAO%%lib/libTAO_IDL_BE.so.%%ACE_VERSION%%
+%%TAO%%lib/libTAO_IDL_FE.so
+%%TAO%%lib/libTAO_IDL_FE.so.%%ACE_VERSION%%
%%TAO%%lib/libTAO_IFRService.so
%%TAO%%lib/libTAO_IFRService.so.%%TAO_VERSION%%
-%%TAO%%lib/libTAO_IFR_BE_DLL.so
-%%TAO%%lib/libTAO_IFR_BE_DLL.so.%%TAO_VERSION%%
+%%TAO%%lib/libTAO_IFR_BE.so
+%%TAO%%lib/libTAO_IFR_BE.so.%%TAO_VERSION%%
%%TAO%%lib/libTAO_IFR_Client.so
%%TAO%%lib/libTAO_IFR_Client.so.%%TAO_VERSION%%
%%TAO%%lib/libTAO_IORInterceptor.so
@@ -4831,8 +5019,8 @@ lib/libClient_Test.so.%%ACE_VERSION%%
%%TAO%%lib/libTAO_ObjRefTemplate.so.%%TAO_VERSION%%
%%TAO%%lib/libTAO_PSDL.so
%%TAO%%lib/libTAO_PSDL.so.%%TAO_VERSION%%
-%%TAO%%lib/libTAO_PSDL_DataStore.so
-%%TAO%%lib/libTAO_PSDL_DataStore.so.%%TAO_VERSION%%
+%%TAO%%lib/libTAO_PSDL_Datastore.so
+%%TAO%%lib/libTAO_PSDL_Datastore.so.%%TAO_VERSION%%
%%TAO%%lib/libTAO_PortableGroup.so
%%TAO%%lib/libTAO_PortableGroup.so.%%TAO_VERSION%%
%%TAO%%lib/libTAO_PortableServer.so
@@ -4861,6 +5049,8 @@ lib/libClient_Test.so.%%ACE_VERSION%%
%%TAO%%lib/libTAO_RTScheduler.so.%%TAO_VERSION%%
%%TAO%%lib/libTAO_RT_Notification.so
%%TAO%%lib/libTAO_RT_Notification.so.%%TAO_VERSION%%
+%%TAO%%lib/libTAO_ReplicationManagerLib.so
+%%TAO%%lib/libTAO_ReplicationManagerLib.so.%%TAO_VERSION%%
%%TAO%%lib/libTAO_SSLIOP.so
%%TAO%%lib/libTAO_SSLIOP.so.%%TAO_VERSION%%
%%TAO%%lib/libTAO_Security.so
@@ -4877,406 +5067,6 @@ lib/libClient_Test.so.%%ACE_VERSION%%
%%TAO%%lib/libTAO_Utils.so.%%TAO_VERSION%%
%%TAO%%lib/libTAO_Valuetype.so
%%TAO%%lib/libTAO_Valuetype.so.%%TAO_VERSION%%
-%%TAO%%%%TESTS%%lib/libUCS4_UTF16.so
-%%TAO%%%%TESTS%%lib/libUCS4_UTF16.so.%%TAO_VERSION%%
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/001/00SetEnv
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/001/001.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/001/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/001/acceptor.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/001/combine.shar
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/001/logger.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/001/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/001/page02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/001/page03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/001/page04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/001/page05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/001/server.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/001/simple.fig
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/001/simple.gif
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/002/00SetEnv
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/002/002.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/002/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/002/combine.shar
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/002/handler.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/002/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/002/page02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/002/page03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/002/page04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/002/server.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/colorize
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/combine
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/fix.Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/guide-tutorials.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/linify
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/new-tutorials.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/online-tutorials.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/templates.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/tutorials.dsw
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/003/00SetEnv
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/003/003.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/003/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/003/client.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/003/combine.shar
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/003/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/004/00SetEnv
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/004/004.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/004/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/004/client.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/004/combine.shar
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/004/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/005/00SetEnv
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/005/005.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/005/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/005/client_acceptor.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/005/client_handler.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/005/client_handler.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/005/combine.shar
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/005/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/005/page02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/005/page03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/005/page04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/005/page05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/005/page06.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/005/page07.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/005/page08.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/005/server.brk
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/005/server.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/006/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/006/006.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/006/client_acceptor.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/006/client_handler.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/006/client_handler.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/006/combine.shar
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/006/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/006/page02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/006/page03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/006/page04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/006/page05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/006/page06.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/006/server.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/007/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/007/007.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/007/client_acceptor.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/007/client_acceptor.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/007/client_handler.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/007/client_handler.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/007/combine.shar
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/007/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/007/page02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/007/page03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/007/page04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/007/page05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/007/page06.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/007/page07.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/007/page08.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/007/page09.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/007/server.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/007/thread_pool.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/007/thread_pool.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/008/008-broadcast.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/008/008-direct.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/008/008-server.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/008/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/008/broadcast_client.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/008/combine.shar
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/008/directed_client.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/008/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/008/page02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/008/page03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/008/page04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/008/page05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/008/server.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/009/009-broadcast.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/009/009-directed.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/009/009-server.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/009/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/009/broadcast_client.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/009/combine.shar
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/009/directed_client.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/009/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/009/page02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/009/page03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/009/page04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/009/page05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/009/server.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/010/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/010/010.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/010/combine.shar
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/010/block.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/010/message_queue.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/010/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/010/page02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/010/page03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/010/page04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/010/page05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/010/page06.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/010/page07.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/010/task.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/010/task.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/011/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/011/011.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/011/combine.shar
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/011/block.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/011/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/011/data.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/011/message_queue.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/011/page02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/011/page03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/011/page04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/011/page05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/011/page06.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/011/task.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/011/task.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/012/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/012/012.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/012/combine.shar
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/012/block.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/012/message_queue.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/012/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/012/page02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/012/page03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/012/page04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/012/page05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/012/page06.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/012/task.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/012/task.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/012/work.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/013/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/013/013.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/013/block.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/013/block.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/013/combine.shar
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/013/message_queue.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/013/mld.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/013/mld.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/013/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/013/page02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/013/page03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/013/page04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/013/page05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/013/page06.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/013/page07.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/013/page08.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/013/task.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/013/task.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/013/work.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/013/work.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/014/EndTask.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/014/014.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/014/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/014/Task.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/014/Task.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/014/combine.shar
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/014/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/014/page02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/014/page03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/014/page04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/014/page05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/014/stream.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/015-client.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/015-server.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/Client_i.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/Client_i.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/Compressor.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/Compressor.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/CompressorBase.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/CompressorBase.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/Crypt.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/Crypt.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/Handler.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/Handler.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/Makefile.client
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/Makefile.server
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/Protocol_Stream.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/Protocol_Stream.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/Protocol_Task.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/Protocol_Task.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/Recv.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/Recv.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/Server_i.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/Server_i.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/Xmit.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/Xmit.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/ZlibCompressor.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/ZlibCompressor.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/client.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/combine.shar
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page06.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page07.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page08.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page09.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page10.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page11.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page12.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page13.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page14.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page15.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page16.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page17.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page18.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page19.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page20.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page21.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/page22.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/server.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/015/stream.gif
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/016/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/016/016.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/016/Condition_i.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/016/Condition_i.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/016/combine.shar
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/016/condition.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/016/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/016/page02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/016/page03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/016/page04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/016/page05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/017/Barrier_i.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/017/017.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/017/Barrier_i.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/017/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/017/barrier.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/017/barrier2.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/017/combine.shar
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/017/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/017/page02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/017/page03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/017/page04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/017/page05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/017/page06.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/018/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/018/018.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/018/Mutex_i.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/018/Test_T.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/018/Test_T.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/018/Token_i.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/018/combine.shar
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/018/output
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/018/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/018/page02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/018/page03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/018/page04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/018/page05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/018/page06.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/018/page07.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/018/token.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/019/019-client.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/019/019-client2.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/019/019-server.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/019/019-server2.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/019/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/019/client.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/019/client2.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/019/combine.shar
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/019/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/019/page02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/019/page03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/019/page04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/019/page05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/019/page06.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/019/server.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/019/server2.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/019/shmem.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/019/shmem.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/020/020-client.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/020/020-client2.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/020/020-server.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/020/020-server2.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/020/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/020/client.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/020/client2.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/020/combine.shar
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/020/mmap.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/020/mmap.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/020/mmapfile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/020/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/020/page02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/020/page03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/020/page04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/020/page05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/020/page06.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/020/server.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/020/server2.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/021/021-client.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/021/021-server.dsp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/021/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/021/client.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/021/combine.shar
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/021/mpool.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/021/mpool.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/021/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/021/page02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/021/page03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/021/page04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/021/page05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/021/page06.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/021/server.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/022/client/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/022/client/client.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/022/Acceptor_Service.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/022/Acceptor_Service.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/022/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/022/client_handler.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/022/client_handler.h
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/022/page01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/022/page02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/022/page03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/022/page04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/022/page05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/022/server.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/022/svc.conf
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_2/Chap_2.zip
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_2/ex01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_2/ex02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_2/ex03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_2/ex04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_2/ex05.htm
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_2/ex05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_2/ex06.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_3/Chap_3.zip
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_3/Makefile
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_3/README
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_3/ex01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_3/ex02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_3/ex03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_3/mm.cpp
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_4/Chap_4.zip
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_4/ex01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_4/ex02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_4/ex03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_4/ex04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_4/ex05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_4/ex06.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_4/ex07.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_4/ex08.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_5/Chap_5.zip
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_5/ex01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_5/ex02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_5/ex03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_5/ex04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_5/ex05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_6/Chap_6.zip
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_6/ex01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_6/ex02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_6/ex03.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_6/ex04.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_6/ex05.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_6/ex06.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_6/ex07.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_6/ex08.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_6/ex09.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_6/ex10.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_7/Chap_7.zip
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_7/ex01.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_7/ex02.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/tutorials/Chap_7/ex03.html
%%PORTDOCS%%%%DOCSDIR%%/ACE/ACE-FMM.html
%%PORTDOCS%%%%DOCSDIR%%/ACE/ACE-SSL.html
%%PORTDOCS%%%%DOCSDIR%%/ACE/ACE-bug-process.html
@@ -5284,20 +5074,17 @@ lib/libClient_Test.so.%%ACE_VERSION%%
%%PORTDOCS%%%%DOCSDIR%%/ACE/ACE-configuration.txt
%%PORTDOCS%%%%DOCSDIR%%/ACE/ACE-development-process.html
%%PORTDOCS%%%%DOCSDIR%%/ACE/ACE-guidelines.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/ACE-inheritance.pdf
-%%PORTDOCS%%%%DOCSDIR%%/ACE/ACE-inheritance.ps.gz
%%PORTDOCS%%%%DOCSDIR%%/ACE/ACE-lessons.html
%%PORTDOCS%%%%DOCSDIR%%/ACE/ACE-porting.html
%%PORTDOCS%%%%DOCSDIR%%/ACE/ACE-subsets.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/ACE-tutorials.html
%%PORTDOCS%%%%DOCSDIR%%/ACE/CE-status.txt
+%%PORTDOCS%%%%DOCSDIR%%/ACE/README.tutorials
%%PORTDOCS%%%%DOCSDIR%%/ACE/exceptions.html
%%PORTDOCS%%%%DOCSDIR%%/ACE/index.html
-%%PORTDOCS%%%%DOCSDIR%%/ACE/wchar.txt
-%%PORTDOCS%%%%DOCSDIR%%/ACE/minimumTAO.html
%%PORTDOCS%%%%DOCSDIR%%/ACE/msvc_notes.txt
%%PORTDOCS%%%%DOCSDIR%%/ACE/run_test.txt
%%PORTDOCS%%%%DOCSDIR%%/ACE/usage-bugzilla.html
+%%PORTDOCS%%%%DOCSDIR%%/ACE/wchar.txt
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/dynany/index.html
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/DIFFERENCES
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/HISTORY
@@ -5418,28 +5205,70 @@ lib/libClient_Test.so.%%ACE_VERSION%%
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/Security/images/openssl_button.gif
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/Security/images/tao2.gif
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/Security/index.html
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/GNUmakefile
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/Makefile
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/docs.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/docs.sln
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/docs_Static.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/docs_Static.sln
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/libraries.html
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/minimumTAO.html
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/releasenotes/FT_FaultAnalyzerFramework.jpg
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/releasenotes/FT_PrototypeArchitecture.jpg
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/GNUmakefile
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Makefile
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/AMI.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/AMI.sln
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/AMI_Static.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/AMI_Static.sln
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/GNUmakefile
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/GNUmakefile.Quoter_AMI_Client
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/GNUmakefile.Quoter_AMI_Server
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/Handler_i.cpp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/Handler_i.h
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/Makefile
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/Quoter.idl
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/Quoter_AMI.mpc
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/Quoter_AMI_Client.bor
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/Quoter_AMI_Client.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/Quoter_AMI_Client.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/Quoter_AMI_Client_Static.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/Quoter_AMI_Client_Static.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/Quoter_AMI_Server.bor
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/Quoter_AMI_Server.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/Quoter_AMI_Server.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/Quoter_AMI_Server_Static.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/Quoter_AMI_Server_Static.vcproj
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/Stock_Factory_i.cpp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/Stock_Factory_i.h
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/Stock_i.cpp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/Stock_i.h
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/client.cpp
-%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/client.dsp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/index.html
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/server.cpp
-%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/server.dsp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/svc.conf
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/AMI/svc.conf.xml
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Consumer_i.h
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Event_Service.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Event_Service.sln
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Event_Service_Static.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Event_Service_Static.sln
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/GNUmakefile
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/GNUmakefile.Quoter_Event_Service_Client
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/GNUmakefile.Quoter_Event_Service_Server
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Makefile
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Quoter.idl
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Quoter_Event_Service.mpc
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Quoter_Event_Service_Client.bor
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Quoter_Event_Service_Client.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Quoter_Event_Service_Client.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Quoter_Event_Service_Client_Static.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Quoter_Event_Service_Client_Static.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Quoter_Event_Service_Server.bor
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Quoter_Event_Service_Server.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Quoter_Event_Service_Server.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Quoter_Event_Service_Server_Static.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Quoter_Event_Service_Server_Static.vcproj
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Stock_Consumer.cpp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Stock_Consumer.h
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Stock_Factory_i.cpp
@@ -5447,34 +5276,63 @@ lib/libClient_Test.so.%%ACE_VERSION%%
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Stock_i.cpp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/Stock_i.h
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/client.cpp
-%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/client.dsp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/ec.conf
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/ec.conf.xml
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/index.html
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/server.cpp
-%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/server.dsp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/stock_list.txt
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/stock_list1.txt
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Event_Service/stock_list2.txt
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/GNUmakefile
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Makefile
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/GNUmakefile
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/GNUmakefile.Quoter_Naming_Service_Client
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/GNUmakefile.Quoter_Naming_Service_Server
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/Makefile
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/Naming_Service.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/Naming_Service.sln
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/Naming_Service_Static.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/Naming_Service_Static.sln
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/Quoter_Naming_Service.mpc
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/Quoter_Naming_Service_Client.bor
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/Quoter_Naming_Service_Client.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/Quoter_Naming_Service_Client.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/Quoter_Naming_Service_Client_Static.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/Quoter_Naming_Service_Client_Static.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/Quoter_Naming_Service_Server.bor
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/Quoter_Naming_Service_Server.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/Quoter_Naming_Service_Server.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/Quoter_Naming_Service_Server_Static.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/Quoter_Naming_Service_Server_Static.vcproj
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/Stock_Factory_i.cpp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/Stock_Factory_i.h
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/Stock_i.cpp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/Stock_i.h
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/client.cpp
-%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/client.dsp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/index.html
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/server.cpp
-%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Naming_Service/server.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/GNUmakefile
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/GNUmakefile.Quoter_On_Demand_Activation_Client
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/GNUmakefile.Quoter_On_Demand_Activation_Server
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/Handler_i.cpp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/Handler_i.h
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/Makefile
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/On_Demand_Activation.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/On_Demand_Activation.sln
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/On_Demand_Activation_Static.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/On_Demand_Activation_Static.sln
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/Quoter.idl
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/Quoter_On_Demand_Activation.mpc
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/Quoter_On_Demand_Activation_Client.bor
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/Quoter_On_Demand_Activation_Client.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/Quoter_On_Demand_Activation_Client.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/Quoter_On_Demand_Activation_Client_Static.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/Quoter_On_Demand_Activation_Client_Static.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/Quoter_On_Demand_Activation_Server.bor
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/Quoter_On_Demand_Activation_Server.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/Quoter_On_Demand_Activation_Server.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/Quoter_On_Demand_Activation_Server_Static.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/Quoter_On_Demand_Activation_Server_Static.vcproj
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/Stock_Factory_Locator_i.cpp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/Stock_Factory_Locator_i.h
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/Stock_Factory_i.cpp
@@ -5484,11 +5342,30 @@ lib/libClient_Test.so.%%ACE_VERSION%%
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/client.cpp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/index.html
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/server.cpp
-%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/On_Demand_Activation/server.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Quoter.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Quoter.sln
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Quoter_Static.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Quoter_Static.sln
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/GNUmakefile
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/GNUmakefile.Quoter_RT_Event_Service_Client
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/GNUmakefile.Quoter_RT_Event_Service_Server
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/Makefile
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/Quoter.idl
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/Quoter_RT_Event_Service.mpc
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/Quoter_RT_Event_Service_Client.bor
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/Quoter_RT_Event_Service_Client.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/Quoter_RT_Event_Service_Client.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/Quoter_RT_Event_Service_Client_Static.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/Quoter_RT_Event_Service_Client_Static.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/Quoter_RT_Event_Service_Server.bor
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/Quoter_RT_Event_Service_Server.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/Quoter_RT_Event_Service_Server.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/Quoter_RT_Event_Service_Server_Static.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/Quoter_RT_Event_Service_Server_Static.vcproj
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/RT_Event_Service.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/RT_Event_Service.sln
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/RT_Event_Service_Static.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/RT_Event_Service_Static.sln
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/Stock_Consumer.cpp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/Stock_Consumer.h
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/Stock_Factory_i.cpp
@@ -5496,17 +5373,43 @@ lib/libClient_Test.so.%%ACE_VERSION%%
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/Stock_i.cpp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/Stock_i.h
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/client.cpp
-%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/client.dsp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/index.html
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/server.cpp
-%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/RT_Event_Service/server.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Client/Client.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Client/Client.sln
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Client/Client_Static.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Client/Client_Static.sln
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Client/GNUmakefile
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Client/GNUmakefile.Quoter_Simple_Client
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Client/Makefile
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Client/Quoter_Simple_Client.bor
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Client/Quoter_Simple_Client.dsp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Client/Quoter_Simple_Client.mpc
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Client/Quoter_Simple_Client.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Client/Quoter_Simple_Client_Static.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Client/Quoter_Simple_Client_Static.vcproj
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Client/client.cpp
-%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Client/client.dsp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Client/index.html
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/GNUmakefile
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/GNUmakefile
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/GNUmakefile.Quoter_Simple_Impl_Repo_Client
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/GNUmakefile.Quoter_Simple_Impl_Repo_Server
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/Impl_Repo.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/Impl_Repo.sln
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/Impl_Repo_Static.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/Impl_Repo_Static.sln
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/Makefile
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/Quoter_Simple_Impl_Repo.mpc
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/Quoter_Simple_Impl_Repo_Client.bor
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/Quoter_Simple_Impl_Repo_Client.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/Quoter_Simple_Impl_Repo_Client.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/Quoter_Simple_Impl_Repo_Client_Static.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/Quoter_Simple_Impl_Repo_Client_Static.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/Quoter_Simple_Impl_Repo_Server.bor
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/Quoter_Simple_Impl_Repo_Server.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/Quoter_Simple_Impl_Repo_Server.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/Quoter_Simple_Impl_Repo_Server_Static.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/Quoter_Simple_Impl_Repo_Server_Static.vcproj
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/Stock_Factory_i.cpp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/Stock_Factory_i.h
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/Stock_i.cpp
@@ -5514,20 +5417,46 @@ lib/libClient_Test.so.%%ACE_VERSION%%
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/client.cpp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/index.html
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/server.cpp
-%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Impl-Repo/server.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/ImprovedServer/GNUmakefile
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/ImprovedServer/GNUmakefile.Quoter_Simple_ImprovedServer
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/ImprovedServer/ImprovedServer.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/ImprovedServer/ImprovedServer.sln
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/ImprovedServer/ImprovedServer_Static.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/ImprovedServer/ImprovedServer_Static.sln
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/ImprovedServer/Makefile
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/ImprovedServer/Quoter_Simple_ImprovedServer.bor
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/ImprovedServer/Quoter_Simple_ImprovedServer.dsp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/ImprovedServer/Quoter_Simple_ImprovedServer.mpc
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/ImprovedServer/Quoter_Simple_ImprovedServer.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/ImprovedServer/Quoter_Simple_ImprovedServer_Static.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/ImprovedServer/Quoter_Simple_ImprovedServer_Static.vcproj
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/ImprovedServer/Stock_Factory_i.cpp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/ImprovedServer/Stock_Factory_i.h
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/ImprovedServer/Stock_i.cpp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/ImprovedServer/Stock_i.h
-%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/ImprovedServer/improvedserver.dsp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/ImprovedServer/index.html
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/ImprovedServer/server.cpp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/ImprovedServer/stock_list.txt
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Makefile
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/GNUmakefile
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/GNUmakefile.Quoter_Simple_Persistent_Client
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/GNUmakefile.Quoter_Simple_Persistent_Server
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/Makefile
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/Persistent.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/Persistent.sln
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/Persistent_Static.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/Persistent_Static.sln
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/Quoter_Simple_Persistent.mpc
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/Quoter_Simple_Persistent_Client.bor
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/Quoter_Simple_Persistent_Client.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/Quoter_Simple_Persistent_Client.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/Quoter_Simple_Persistent_Client_Static.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/Quoter_Simple_Persistent_Client_Static.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/Quoter_Simple_Persistent_Server.bor
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/Quoter_Simple_Persistent_Server.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/Quoter_Simple_Persistent_Server.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/Quoter_Simple_Persistent_Server_Static.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/Quoter_Simple_Persistent_Server_Static.vcproj
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/Stock_Factory_i.cpp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/Stock_Factory_i.h
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/Stock_i.cpp
@@ -5535,24 +5464,51 @@ lib/libClient_Test.so.%%ACE_VERSION%%
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/client.cpp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/index.html
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/server.cpp
-%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Persistent/server.dsp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Quoter.idl
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Server/GNUmakefile
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Server/GNUmakefile.Quoter_Simple_Server
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Server/Makefile
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Server/Quoter_Simple_Server.bor
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Server/Quoter_Simple_Server.dsp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Server/Quoter_Simple_Server.mpc
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Server/Quoter_Simple_Server.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Server/Quoter_Simple_Server_Static.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Server/Quoter_Simple_Server_Static.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Server/Server.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Server/Server.sln
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Server/Server_Static.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Server/Server_Static.sln
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Server/Stock_Factory_i.cpp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Server/Stock_Factory_i.h
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Server/Stock_i.cpp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Server/Stock_i.h
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Server/index.html
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Server/server.cpp
-%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Server/server.dsp
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Simple.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Simple.sln
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Simple_Static.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/Simple_Static.sln
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/Simple/index.html
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/idl/GNUmakefile
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/idl/GNUmakefile.Quoter_Idl_Lib
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/idl/Makefile
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/idl/Quoter.idl
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/idl/Quoter_Idl_Lib.bor
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/idl/Quoter_Idl_Lib.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/idl/Quoter_Idl_Lib.vcproj
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/idl/Quoter_Idl_Lib_Static.dsp
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/idl/Quoter_Idl_Lib_Static.vcproj
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/idl/Quoter_idl.mpc
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/idl/idl.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/idl/idl.sln
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/idl/idl_Static.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/idl/idl_Static.sln
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/idl/quoter_common_export.h
%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/Quoter/index.html
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/tutorials.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/tutorials.sln
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/tutorials_Static.dsw
+%%TAO%%%%PORTDOCS%%%%DOCSDIR%%/TAO/tutorials/tutorials_Static.sln
%%TAO%%%%PORTDOCS%%@dirrm %%DOCSDIR%%/TAO/implrepo
%%TAO%%%%PORTDOCS%%@dirrm %%DOCSDIR%%/TAO/interfacerepo
%%TAO%%%%PORTDOCS%%@dirrm %%DOCSDIR%%/TAO/pluggable_protocols
@@ -5578,36 +5534,6 @@ lib/libClient_Test.so.%%ACE_VERSION%%
%%TAO%%%%PORTDOCS%%@dirrm %%DOCSDIR%%/TAO/tutorials
%%TAO%%%%PORTDOCS%%@dirrm %%DOCSDIR%%/TAO/dynany
%%TAO%%%%PORTDOCS%%@dirrm %%DOCSDIR%%/TAO
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/001
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/002
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/003
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/004
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/005
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/006
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/007
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/008
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/009
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/010
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/011
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/012
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/013
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/014
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/015
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/016
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/017
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/018
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/019
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/020
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/021
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/022/client
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/022
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/Chap_2
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/Chap_3
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/Chap_4
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/Chap_5
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/Chap_6
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials/Chap_7
-%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE/tutorials
%%PORTDOCS%%@dirrm %%DOCSDIR%%/ACE
%%PORTDOCS%%@dirrm %%DOCSDIR%%
%%TAO%%@dirrm include/tao/Valuetype