在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例C/C++语言基础 → Orbacus4.3.4[一个CORBA C++ 开源库]

Orbacus4.3.4[一个CORBA C++ 开源库]

C/C++语言基础

下载此实例
  • 开发语言:C/C++
  • 实例大小:4.36M
  • 下载次数:1
  • 浏览次数:7
  • 发布时间:2023-12-03
  • 实例类别:C/C++语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签:

实例介绍

【实例简介】一个CORBA,C 开源库,原IONA公司产品,现在已被PROGRESS收购。

【实例截图】

from clipboard

【核心代码】

.
├── OB-4.3.4
│   ├── INSTALL
│   ├── INSTALL.MICROSOFT
│   ├── Makefile.in
│   ├── Makefile.mak
│   ├── ORBACUS_COPYRIGHT.pdf
│   ├── ORBACUS_LICENSE.pdf
│   ├── ORBACUS_NOTICES
│   ├── README
│   ├── RELNOTES
│   ├── amirouter
│   │   ├── CHANGES
│   │   ├── Makefile.in
│   │   ├── Makefile.mak
│   │   ├── README
│   │   ├── RELNOTES
│   │   ├── config
│   │   │   ├── Make.rules.in
│   │   │   ├── Make.rules.mak
│   │   │   └── testutil.sh
│   │   ├── configure
│   │   ├── configure.in
│   │   └── src
│   │       ├── Config.h.in
│   │       ├── Makefile.in
│   │       ├── Makefile.mak
│   │       ├── PersistentRequestRouter_impl.cpp
│   │       ├── PersistentRequestRouter_impl.h
│   │       ├── PersistentRequest_impl.cpp
│   │       ├── PersistentRequest_impl.h
│   │       ├── PersistentRouterWorker.cpp
│   │       ├── RouterAdmin_impl.cpp
│   │       ├── RouterAdmin_impl.h
│   │       ├── RouterOptions.h
│   │       ├── RouterWorker.cpp
│   │       ├── Router_impl.cpp
│   │       ├── Router_impl.h
│   │       ├── Server.cpp
│   │       ├── UntypedReplyHandler_impl.cpp
│   │       └── UntypedReplyHandler_impl.h
│   ├── balancer
│   │   ├── CHANGES
│   │   ├── Makefile.in
│   │   ├── Makefile.mak
│   │   ├── README
│   │   ├── config
│   │   │   ├── Make.rules.in
│   │   │   └── Make.rules.mak
│   │   ├── configure
│   │   ├── configure.in
│   │   ├── demo
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   ├── adaptive
│   │   │   │   ├── Client.cpp
│   │   │   │   ├── Hello.idl
│   │   │   │   ├── Hello_impl.cpp
│   │   │   │   ├── Hello_impl.h
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── README
│   │   │   │   ├── Server.cpp
│   │   │   │   ├── balancer.conf
│   │   │   │   └── run
│   │   │   └── library
│   │   │       ├── Client.cpp
│   │   │       ├── Library.idl
│   │   │       ├── Library_impl.cpp
│   │   │       ├── Library_impl.h
│   │   │       ├── Makefile.in
│   │   │       ├── Makefile.mak
│   │   │       ├── README
│   │   │       ├── Server.cpp
│   │   │       ├── balancer.conf
│   │   │       └── run
│   │   ├── idl
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   └── OB
│   │   │       ├── Balancer.idl
│   │   │       ├── BalancerPolicyTypes.idl
│   │   │       ├── BalancerProperties.idl
│   │   │       ├── BalancerTypes.idl
│   │   │       ├── BalancerUtil.idl
│   │   │       ├── Makefile.in
│   │   │       └── Makefile.mak
│   │   ├── include
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   └── OB
│   │   │       ├── BalancerUtil_init.h
│   │   │       ├── Balancer_init.h
│   │   │       ├── Makefile.in
│   │   │       └── Makefile.mak
│   │   ├── runtest
│   │   ├── src
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   ├── library
│   │   │   │   ├── BalancerDB.idl
│   │   │   │   ├── BalancerDatabase.cpp
│   │   │   │   ├── BalancerDatabase.h
│   │   │   │   ├── BalancerDatabase_fwd.h
│   │   │   │   ├── BalancerInitializer.cpp
│   │   │   │   ├── BalancerInitializer.h
│   │   │   │   ├── BalancerInternal.idl
│   │   │   │   ├── BalancerLogger.cpp
│   │   │   │   ├── BalancerLogger.h
│   │   │   │   ├── BalancerLogger_fwd.h
│   │   │   │   ├── BalancerMain.cpp
│   │   │   │   ├── BalancerPolicies.idl
│   │   │   │   ├── BalancerPolicies_impl.cpp
│   │   │   │   ├── BalancerPolicies_impl.h
│   │   │   │   ├── BalancerServer.cpp
│   │   │   │   ├── BalancerServer.h
│   │   │   │   ├── Config.h.in
│   │   │   │   ├── Database.cpp
│   │   │   │   ├── Database.h
│   │   │   │   ├── GroupFactory_impl.cpp
│   │   │   │   ├── GroupFactory_impl.h
│   │   │   │   ├── GroupORT.idl
│   │   │   │   ├── GroupORT_impl.cpp
│   │   │   │   ├── GroupORT_impl.h
│   │   │   │   ├── Group_impl.cpp
│   │   │   │   ├── Group_impl.h
│   │   │   │   ├── MSG00001.bin
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── NTBalancerMain.cpp
│   │   │   │   ├── NTBalancerMsg.h
│   │   │   │   ├── NTBalancerMsg.mc
│   │   │   │   ├── NTBalancerMsg.rc
│   │   │   │   ├── NTBalancerService.cpp
│   │   │   │   ├── NTBalancerService.h
│   │   │   │   ├── OSLayer.h
│   │   │   │   ├── ReplicaLocator.cpp
│   │   │   │   ├── ReplicaLocator.h
│   │   │   │   ├── StrategyAdaptiveBase.cpp
│   │   │   │   ├── StrategyAdaptiveBase.h
│   │   │   │   ├── StrategyBase.cpp
│   │   │   │   ├── StrategyBase.h
│   │   │   │   ├── StrategyFactory.cpp
│   │   │   │   ├── StrategyFactory.h
│   │   │   │   ├── StrategyFactory_fwd.h
│   │   │   │   ├── StrategyLL_impl.cpp
│   │   │   │   ├── StrategyLL_impl.h
│   │   │   │   ├── StrategyMinDisp_impl.cpp
│   │   │   │   ├── StrategyMinDisp_impl.h
│   │   │   │   ├── StrategyProxy_impl.cpp
│   │   │   │   ├── StrategyProxy_impl.h
│   │   │   │   ├── StrategyRR_impl.cpp
│   │   │   │   ├── StrategyRR_impl.h
│   │   │   │   ├── StrategyRand_impl.cpp
│   │   │   │   └── StrategyRand_impl.h
│   │   │   └── util
│   │   │       ├── LBAdmin.cpp
│   │   │       ├── LBMkref.cpp
│   │   │       ├── LoadAlertInterceptor.cpp
│   │   │       ├── LoadAlertInterceptor.h
│   │   │       ├── LoadAlert_impl.cpp
│   │   │       ├── LoadAlert_impl.h
│   │   │       ├── LoadCalculator_impl.cpp
│   │   │       ├── LoadCalculator_impl.h
│   │   │       ├── LoadUpdater_impl.cpp
│   │   │       ├── LoadUpdater_impl.h
│   │   │       ├── Makefile.in
│   │   │       ├── Makefile.mak
│   │   │       ├── UtilInitializer.cpp
│   │   │       ├── UtilInitializer.h
│   │   │       ├── UtilLogger.cpp
│   │   │       ├── UtilLogger.h
│   │   │       └── UtilLogger_fwd.h
│   │   └── test
│   │       ├── Client.cpp
│   │       ├── CustomStrategy_impl.cpp
│   │       ├── CustomStrategy_impl.h
│   │       ├── LoadAlert_impl.h
│   │       ├── Makefile.in
│   │       ├── Makefile.mak
│   │       ├── MemberObject.idl
│   │       ├── MemberObject_impl.cpp
│   │       ├── MemberObject_impl.h
│   │       ├── Server.cpp
│   │       ├── TestAdministrative.cpp
│   │       ├── TestCustom.cpp
│   │       ├── TestGroup.cpp
│   │       ├── TestGroupFactory.cpp
│   │       ├── TestLeastLoad.cpp
│   │       ├── TestMinDisp.cpp
│   │       ├── TestPersistence.cpp
│   │       ├── TestRandom.cpp
│   │       ├── TestRoundRobin.cpp
│   │       ├── Tester.idl
│   │       ├── Tester_impl.cpp
│   │       ├── Tester_impl.h
│   │       └── ob.conf
│   ├── bidir
│   │   ├── CHANGES
│   │   ├── Makefile.in
│   │   ├── Makefile.mak
│   │   ├── README
│   │   ├── config
│   │   │   ├── Make.rules.in
│   │   │   └── Make.rules.mak
│   │   ├── configure
│   │   ├── configure.in
│   │   ├── demo
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   └── hello
│   │   │       ├── Client.cpp
│   │   │       ├── Hello.idl
│   │   │       ├── Hello_impl.cpp
│   │   │       ├── Hello_impl.h
│   │   │       ├── Makefile.in
│   │   │       ├── Makefile.mak
│   │   │       ├── README
│   │   │       ├── Server.cpp
│   │   │       ├── client.cfg
│   │   │       ├── run
│   │   │       └── server.cfg
│   │   ├── idl
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   └── OB
│   │   │       ├── BiDirIOP.idl
│   │   │       ├── Makefile.in
│   │   │       ├── Makefile.mak
│   │   │       └── OCI_BiDir.idl
│   │   ├── include
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   └── OB
│   │   │       ├── Makefile.in
│   │   │       ├── Makefile.mak
│   │   │       └── OCI_BiDir_init.h
│   │   └── src
│   │       ├── ActiveTransport.cpp
│   │       ├── ActiveTransport.h
│   │       ├── ActiveTransport_fwd.h
│   │       ├── Config.h.in
│   │       ├── Makefile.in
│   │       ├── Makefile.mak
│   │       ├── OCI_BiDir_impl.cpp
│   │       ├── OCI_BiDir_impl.h
│   │       ├── OCI_BiDir_init.cpp
│   │       ├── TransportManager.cpp
│   │       ├── TransportManager.h
│   │       └── TransportManager_fwd.h
│   ├── config
│   │   ├── Make.rules.in
│   │   ├── Make.rules.mak
│   │   ├── WinConfig.h
│   │   ├── acconfig.h
│   │   ├── basic.m4
│   │   ├── berkeleydb.m4
│   │   ├── berkeleydb.mak
│   │   ├── bormakedef.pl
│   │   ├── config.guess
│   │   ├── config.sub
│   │   ├── cplusplus.m4
│   │   ├── defaults
│   │   ├── dll.m4
│   │   ├── gcc-check
│   │   ├── gcc-version-flag
│   │   ├── install-sh
│   │   ├── jtc.m4
│   │   ├── macros.m4
│   │   ├── makedef.pl
│   │   ├── makedef_c.pl
│   │   ├── motif.m4
│   │   ├── mssql.mak
│   │   ├── network.m4
│   │   ├── ob.m4
│   │   ├── ob.mak
│   │   ├── obe.m4
│   │   ├── obe.mak
│   │   ├── obevent.m4
│   │   ├── obevent.mak
│   │   ├── obnotify.m4
│   │   ├── obnotify.mak
│   │   ├── obtime.m4
│   │   ├── obtime.mak
│   │   ├── obutil.m4
│   │   ├── obutil.mak
│   │   ├── oracle.m4
│   │   ├── oracle.mak
│   │   ├── sh.init
│   │   ├── tcltk.m4
│   │   ├── threads.m4
│   │   ├── writedep.pl
│   │   └── x11.m4
│   ├── configure
│   ├── configure.in
│   ├── event
│   │   ├── CHANGES
│   │   ├── Makefile.in
│   │   ├── Makefile.mak
│   │   ├── README
│   │   ├── config
│   │   │   ├── Make.rules.in
│   │   │   └── Make.rules.mak
│   │   ├── configure
│   │   ├── configure.in
│   │   ├── demo
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   ├── PullClient.cpp
│   │   │   ├── PullServer.cpp
│   │   │   ├── PushClient.cpp
│   │   │   ├── PushServer.cpp
│   │   │   ├── README
│   │   │   ├── TimerUpdate.idl
│   │   │   ├── TypedPushClient.cpp
│   │   │   ├── TypedPushServer.cpp
│   │   │   ├── run
│   │   │   └── stress
│   │   │       ├── Makefile.in
│   │   │       ├── Makefile.mak
│   │   │       ├── PushClient.cpp
│   │   │       ├── PushServer.cpp
│   │   │       ├── ob.conf
│   │   │       └── run
│   │   ├── idl
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   └── OB
│   │   │       ├── CosEventChannelAdmin.idl
│   │   │       ├── CosEventComm.idl
│   │   │       ├── CosTypedEventChannelAdmin.idl
│   │   │       ├── CosTypedEventComm.idl
│   │   │       ├── Makefile.in
│   │   │       ├── Makefile.mak
│   │   │       ├── OBEventChannelFactory.idl
│   │   │       ├── OBEventReceiver.idl
│   │   │       └── OBTypedEventChannelFactory.idl
│   │   ├── include
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   └── OB
│   │   │       ├── EventService.h
│   │   │       ├── Makefile.in
│   │   │       ├── Makefile.mak
│   │   │       └── TypedEventService.h
│   │   ├── man
│   │   │   ├── Makefile.in
│   │   │   └── man1
│   │   │       ├── Makefile.in
│   │   │       └── eventserv.1
│   │   ├── perf
│   │   │   ├── Consumer.cpp
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   ├── PerformanceTest.pl
│   │   │   ├── README
│   │   │   ├── Supplier.cpp
│   │   │   ├── data
│   │   │   │   ├── bb-1-1.in
│   │   │   │   ├── bb-1-5.in
│   │   │   │   ├── bb-2-10.in
│   │   │   │   ├── bb-2-2.in
│   │   │   │   └── bb-5-5.in
│   │   │   └── ob.conf
│   │   ├── runtest
│   │   ├── src
│   │   │   ├── AdminBase.cpp
│   │   │   ├── AdminBase.h
│   │   │   ├── ChannelType.cpp
│   │   │   ├── ChannelType.h
│   │   │   ├── Config.h.in
│   │   │   ├── EC_ConsumerAdmin_impl.cpp
│   │   │   ├── EC_ConsumerAdmin_impl.h
│   │   │   ├── EC_EventChannel_impl.cpp
│   │   │   ├── EC_EventChannel_impl.h
│   │   │   ├── EC_ProxyPullConsumer_impl.cpp
│   │   │   ├── EC_ProxyPullConsumer_impl.h
│   │   │   ├── EC_ProxyPullSupplier_impl.cpp
│   │   │   ├── EC_ProxyPullSupplier_impl.h
│   │   │   ├── EC_ProxyPushConsumer_impl.cpp
│   │   │   ├── EC_ProxyPushConsumer_impl.h
│   │   │   ├── EC_ProxyPushSupplier_impl.cpp
│   │   │   ├── EC_ProxyPushSupplier_impl.h
│   │   │   ├── EC_SupplierAdmin_impl.cpp
│   │   │   ├── EC_SupplierAdmin_impl.h
│   │   │   ├── EventAdmin.cpp
│   │   │   ├── EventChannelFactory_impl.cpp
│   │   │   ├── EventChannelFactory_impl.h
│   │   │   ├── EventLogger.cpp
│   │   │   ├── EventLogger.h
│   │   │   ├── EventLogger_fwd.h
│   │   │   ├── EventMsg.h
│   │   │   ├── EventMsg.mc
│   │   │   ├── EventMsg.rc
│   │   │   ├── EventQoS.cpp
│   │   │   ├── EventQoS.h
│   │   │   ├── EventService.cpp
│   │   │   ├── EventUtil.cpp
│   │   │   ├── EventUtil.h
│   │   │   ├── Event_impl.cpp
│   │   │   ├── Event_impl.h
│   │   │   ├── MSG00001.bin
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   ├── NTEventService.cpp
│   │   │   ├── NTEventService.h
│   │   │   ├── NTServiceMain.cpp
│   │   │   ├── PipeSegment.cpp
│   │   │   ├── PipeSegment.h
│   │   │   ├── PropagatorBaseThread.cpp
│   │   │   ├── PropagatorBaseThread.h
│   │   │   ├── ProxyBase.cpp
│   │   │   ├── ProxyBase.h
│   │   │   ├── PusherBaseThread.cpp
│   │   │   ├── PusherBaseThread.h
│   │   │   ├── Reaper.cpp
│   │   │   ├── Reaper.h
│   │   │   ├── Server.cpp
│   │   │   ├── SetDefaultProperties.cpp
│   │   │   ├── SetDefaultProperties.h
│   │   │   ├── TEC_ProxyPushSupplier_impl.cpp
│   │   │   ├── TEC_ProxyPushSupplier_impl.h
│   │   │   ├── TEC_TypedConsumerAdmin_impl.cpp
│   │   │   ├── TEC_TypedConsumerAdmin_impl.h
│   │   │   ├── TEC_TypedEventChannel_impl.cpp
│   │   │   ├── TEC_TypedEventChannel_impl.h
│   │   │   ├── TEC_TypedProxyPushConsumer_impl.cpp
│   │   │   ├── TEC_TypedProxyPushConsumer_impl.h
│   │   │   ├── TEC_TypedSupplierAdmin_impl.cpp
│   │   │   ├── TEC_TypedSupplierAdmin_impl.h
│   │   │   ├── TypedEventChannelFactory_impl.cpp
│   │   │   ├── TypedEventChannelFactory_impl.h
│   │   │   └── TypedEventService.cpp
│   │   └── test
│   │       ├── Admin.cpp
│   │       ├── Echo.idl
│   │       ├── Extraction.pm
│   │       ├── Makefile.in
│   │       ├── Makefile.mak
│   │       ├── PullEventClient.cpp
│   │       ├── PullEventServer.cpp
│   │       ├── PushEventClient.cpp
│   │       ├── PushEventServer.cpp
│   │       ├── README
│   │       ├── TestSuiteUtilities.cpp
│   │       ├── TestSuiteUtilities.h
│   │       ├── TestSuiteUtilities.pm
│   │       ├── Test_Control.pm
│   │       ├── Tests.pm
│   │       ├── TypedPushEventClient.cpp
│   │       ├── TypedPushEventServer.cpp
│   │       ├── dat
│   │       │   ├── README
│   │       │   ├── multiple
│   │       │   │   ├── Data1
│   │       │   │   ├── Data2
│   │       │   │   ├── Data3
│   │       │   │   └── Data4
│   │       │   ├── multiple_typed
│   │       │   │   ├── Data1
│   │       │   │   ├── Data2
│   │       │   │   └── Data3
│   │       │   ├── typed
│   │       │   │   └── Data1
│   │       │   └── untyped
│   │       │       ├── Data1
│   │       │       ├── Data2
│   │       │       ├── Data3
│   │       │       ├── Data4
│   │       │       ├── Data5
│   │       │       ├── Data6
│   │       │       ├── Data7
│   │       │       └── Data8
│   │       ├── ob.conf
│   │       ├── regression
│   │       └── runtest.pl
│   ├── jtc
│   │   ├── CHANGES
│   │   ├── Makefile.in
│   │   ├── Makefile.mak
│   │   ├── README
│   │   ├── README.AIX
│   │   ├── README.DEC
│   │   ├── README.GNU
│   │   ├── README.HP
│   │   ├── README.LINUX
│   │   ├── README.SGI
│   │   ├── README.SUN
│   │   ├── README.WINDOWS
│   │   ├── config
│   │   │   ├── Make.rules.in
│   │   │   └── Make.rules.mak
│   │   ├── configure
│   │   ├── configure.in
│   │   ├── demo
│   │   │   ├── Clock.cpp
│   │   │   ├── Conprod.cpp
│   │   │   ├── Conprod2.cpp
│   │   │   ├── Diner.cpp
│   │   │   ├── HelloWorld.cpp
│   │   │   ├── Makefile.in
│   │   │   └── Makefile.mak
│   │   ├── include
│   │   │   ├── JTC
│   │   │   │   ├── Cond.h
│   │   │   │   ├── Config.h.in
│   │   │   │   ├── Exception.h
│   │   │   │   ├── Handle.h
│   │   │   │   ├── HandleI.h
│   │   │   │   ├── JTC.h
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── Monitor.h
│   │   │   │   ├── MonitorI.h
│   │   │   │   ├── Mutex.h
│   │   │   │   ├── RWMutex.h
│   │   │   │   ├── Runnable.h
│   │   │   │   ├── Semaphore.h
│   │   │   │   ├── Sync.h
│   │   │   │   ├── SyncT.h
│   │   │   │   ├── Syscall.h
│   │   │   │   ├── TSS.h
│   │   │   │   ├── Thread.h
│   │   │   │   ├── ThreadGroup.h
│   │   │   │   └── Types.h
│   │   │   ├── Makefile.in
│   │   │   └── Makefile.mak
│   │   ├── runtest
│   │   ├── src
│   │   │   ├── Cond.cpp
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   ├── Monitor.cpp
│   │   │   ├── Mutex.cpp
│   │   │   ├── RWMutex.cpp
│   │   │   ├── Semaphore.cpp
│   │   │   ├── Sync.cpp
│   │   │   ├── TSS.cpp
│   │   │   ├── TSSManager.cpp
│   │   │   ├── TSSManager.h
│   │   │   ├── Thread.cpp
│   │   │   ├── ThreadGroup.cpp
│   │   │   └── Version.cpp
│   │   └── test
│   │       ├── DeadMonitorTest.cpp
│   │       ├── Makefile.in
│   │       ├── Makefile.mak
│   │       ├── MonitorTest.cpp
│   │       ├── MonitorTest2.cpp
│   │       ├── ReentrantMonitorTest.cpp
│   │       ├── StaticMonitorTest.cpp
│   │       ├── TSSTest.cpp
│   │       ├── TestRWLock.cpp
│   │       ├── TestTryLock.cpp
│   │       ├── ThreadCreateTest.cpp
│   │       ├── ThreadExitTest.cpp
│   │       ├── ThreadGroupTest.cpp
│   │       ├── ThreadIDTest.cpp
│   │       ├── ThreadStateTest.cpp
│   │       ├── UncaughtException.cpp
│   │       └── WaitTest.cpp
│   ├── naming
│   │   ├── CHANGES
│   │   ├── Makefile.in
│   │   ├── Makefile.mak
│   │   ├── README
│   │   ├── config
│   │   │   ├── Make.rules.in
│   │   │   ├── Make.rules.mak
│   │   │   └── testutil.sh
│   │   ├── configure
│   │   ├── configure.in
│   │   ├── demo
│   │   │   ├── Client.cpp
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   ├── NamingExample.idl
│   │   │   ├── NamingExample_impl.h
│   │   │   ├── README
│   │   │   ├── Server.cpp
│   │   │   └── run
│   │   ├── idl
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   └── OB
│   │   │       ├── BindingListener.idl
│   │   │       ├── CosNaming.idl
│   │   │       ├── Makefile.in
│   │   │       ├── Makefile.mak
│   │   │       └── OBNaming.idl
│   │   ├── include
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   └── OB
│   │   │       ├── Makefile.in
│   │   │       └── Makefile.mak
│   │   ├── man
│   │   │   ├── Makefile.in
│   │   │   └── man1
│   │   │       ├── Makefile.in
│   │   │       ├── nameserv.1
│   │   │       └── nsadmin.1
│   │   ├── runtest
│   │   ├── src
│   │   │   ├── Compactor.cpp
│   │   │   ├── Compactor.h
│   │   │   ├── Config.h.in
│   │   │   ├── MSG00001.bin
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   ├── NSAdmin.cpp
│   │   │   ├── NTNamingService.cpp
│   │   │   ├── NTNamingService.h
│   │   │   ├── NTServiceMain.cpp
│   │   │   ├── NamingDatabase.cpp
│   │   │   ├── NamingDatabase.h
│   │   │   ├── NamingMsg.h
│   │   │   ├── NamingMsg.mc
│   │   │   ├── NamingMsg.rc
│   │   │   ├── NamingService.cpp
│   │   │   ├── NamingService.h
│   │   │   ├── OBNaming_impl.cpp
│   │   │   ├── OBNaming_impl.h
│   │   │   ├── Server.cpp
│   │   │   └── Types.idl
│   │   └── test
│   │       ├── Client.cpp
│   │       ├── Makefile.in
│   │       ├── Makefile.mak
│   │       ├── TestBind.cpp
│   │       ├── TestBindContext.cpp
│   │       ├── TestCallbacks.cpp
│   │       ├── TestDestroy.cpp
│   │       ├── TestList.cpp
│   │       ├── TestListExtended.cpp
│   │       ├── TestListener_impl.cpp
│   │       ├── TestListener_impl.h
│   │       ├── TestMacro.h
│   │       ├── TestObject.idl
│   │       ├── TestObject_impl.h
│   │       ├── TestRebind.cpp
│   │       ├── TestRebindContext.cpp
│   │       ├── TestRename.cpp
│   │       ├── TestResolve.cpp
│   │       ├── TestResolveStr.cpp
│   │       ├── TestToName.cpp
│   │       ├── TestToString.cpp
│   │       ├── TestToURL.cpp
│   │       └── TestUnbind.cpp
│   ├── ob
│   │   ├── CHANGES
│   │   ├── HOW-TO-REPORT-PROBLEMS
│   │   ├── Makefile.in
│   │   ├── Makefile.mak
│   │   ├── README
│   │   ├── README.CORBA-BOOK
│   │   ├── README.HP
│   │   ├── README.HP11I
│   │   ├── README.IPV6
│   │   ├── README.MACOSX
│   │   ├── README.SGI
│   │   ├── README.SUN
│   │   ├── README.WCHAR_WSTRING
│   │   ├── README.WINDOWS
│   │   ├── config
│   │   │   ├── Make.rules.in
│   │   │   ├── Make.rules.mak
│   │   │   └── testutil.sh
│   │   ├── configure
│   │   ├── configure.in
│   │   ├── demo
│   │   │   ├── AMI
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── echo_poll_router
│   │   │   │   │   ├── Client.cpp
│   │   │   │   │   ├── Echo.idl
│   │   │   │   │   ├── Echo_impl.cpp
│   │   │   │   │   ├── Echo_impl.h
│   │   │   │   │   ├── Makefile.in
│   │   │   │   │   ├── Makefile.mak
│   │   │   │   │   ├── README
│   │   │   │   │   ├── Server.cpp
│   │   │   │   │   ├── client.conf
│   │   │   │   │   └── run
│   │   │   │   ├── echo_pollset
│   │   │   │   │   ├── Echo.idl
│   │   │   │   │   ├── EchoClient.cpp
│   │   │   │   │   ├── EchoServer.cpp
│   │   │   │   │   ├── Echo_impl.cpp
│   │   │   │   │   ├── Echo_impl.h
│   │   │   │   │   ├── Makefile.in
│   │   │   │   │   ├── Makefile.mak
│   │   │   │   │   ├── README
│   │   │   │   │   ├── client.conf
│   │   │   │   │   └── run
│   │   │   │   └── echo_reply_router
│   │   │   │       ├── Client.cpp
│   │   │   │       ├── Echo.idl
│   │   │   │       ├── Echo_impl.cpp
│   │   │   │       ├── Echo_impl.h
│   │   │   │       ├── Makefile.in
│   │   │   │       ├── Makefile.mak
│   │   │   │       ├── README
│   │   │   │       ├── Server.cpp
│   │   │   │       ├── client.conf
│   │   │   │       ├── ob.conf
│   │   │   │       ├── run
│   │   │   │       └── server.conf
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   ├── NTService
│   │   │   │   ├── Client.cpp
│   │   │   │   ├── Hello.idl
│   │   │   │   ├── HelloMsg.h
│   │   │   │   ├── HelloMsg.mc
│   │   │   │   ├── HelloMsg.rc
│   │   │   │   ├── HelloWorldService.cpp
│   │   │   │   ├── HelloWorldService.h
│   │   │   │   ├── Hello_impl.cpp
│   │   │   │   ├── Hello_impl.h
│   │   │   │   ├── MSG00001.bin
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── README
│   │   │   │   └── Server.cpp
│   │   │   ├── abstract
│   │   │   │   ├── Account_impl.cpp
│   │   │   │   ├── Account_impl.h
│   │   │   │   ├── Client.cpp
│   │   │   │   ├── Currency_impl.cpp
│   │   │   │   ├── Currency_impl.h
│   │   │   │   ├── Example.idl
│   │   │   │   ├── Example_impl.cpp
│   │   │   │   ├── Example_impl.h
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── README
│   │   │   │   ├── Server.cpp
│   │   │   │   └── run
│   │   │   ├── benchmark
│   │   │   │   ├── BasicTester_impl.cpp
│   │   │   │   ├── BasicTester_impl.h
│   │   │   │   ├── Benchmark.idl
│   │   │   │   ├── CallBasicTester.cpp
│   │   │   │   ├── CallBasicTester.h
│   │   │   │   ├── CallSequenceTester.cpp
│   │   │   │   ├── CallSequenceTester.h
│   │   │   │   ├── CallUserTypeTester.cpp
│   │   │   │   ├── CallUserTypeTester.h
│   │   │   │   ├── Client.cpp
│   │   │   │   ├── Constants.h
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── SequenceTester_impl.cpp
│   │   │   │   ├── SequenceTester_impl.h
│   │   │   │   ├── Server.cpp
│   │   │   │   ├── Timer.h
│   │   │   │   ├── UserTypeTester_impl.cpp
│   │   │   │   ├── UserTypeTester_impl.h
│   │   │   │   └── run
│   │   │   ├── bidir_giop
│   │   │   │   ├── Client.cpp
│   │   │   │   ├── Hello.idl
│   │   │   │   ├── Hello_impl_async.cpp
│   │   │   │   ├── Hello_impl_async.h
│   │   │   │   ├── Hello_impl_nested.cpp
│   │   │   │   ├── Hello_impl_nested.h
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── README
│   │   │   │   ├── Server_async.cpp
│   │   │   │   └── Server_nested.cpp
│   │   │   ├── book
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── README
│   │   │   │   ├── ch_12
│   │   │   │   │   ├── CCS.idl
│   │   │   │   │   ├── Makefile.in
│   │   │   │   │   ├── Makefile.mak
│   │   │   │   │   ├── README
│   │   │   │   │   ├── client.cc
│   │   │   │   │   ├── icp.cc
│   │   │   │   │   ├── icp.h
│   │   │   │   │   ├── run
│   │   │   │   │   ├── server.cc
│   │   │   │   │   └── server.hh
│   │   │   │   ├── ch_16
│   │   │   │   │   ├── Hello.idl
│   │   │   │   │   ├── Makefile.in
│   │   │   │   │   ├── Makefile.mak
│   │   │   │   │   ├── README
│   │   │   │   │   ├── Types.idl
│   │   │   │   │   ├── main.cc
│   │   │   │   │   ├── run
│   │   │   │   │   └── show_TC.cc
│   │   │   │   ├── ch_18
│   │   │   │   │   ├── CCS.idl
│   │   │   │   │   ├── CosNaming.idl
│   │   │   │   │   ├── Makefile.in
│   │   │   │   │   ├── Makefile.mak
│   │   │   │   │   ├── README
│   │   │   │   │   ├── client.cc
│   │   │   │   │   ├── icp.cc
│   │   │   │   │   ├── icp.h
│   │   │   │   │   ├── run
│   │   │   │   │   ├── server.cc
│   │   │   │   │   └── server.hh
│   │   │   │   ├── ch_19
│   │   │   │   │   ├── CCS.idl
│   │   │   │   │   ├── CosTrading.idl
│   │   │   │   │   ├── CosTradingRepos.idl
│   │   │   │   │   ├── Makefile.in
│   │   │   │   │   ├── Makefile.mak
│   │   │   │   │   ├── README
│   │   │   │   │   ├── client.cc
│   │   │   │   │   ├── create_types.cc
│   │   │   │   │   ├── icp.cc
│   │   │   │   │   ├── icp.h
│   │   │   │   │   ├── server.cc
│   │   │   │   │   └── server.hh
│   │   │   │   ├── ch_21
│   │   │   │   │   ├── CCS.idl
│   │   │   │   │   ├── Makefile.in
│   │   │   │   │   ├── Makefile.mak
│   │   │   │   │   ├── README
│   │   │   │   │   ├── icp.cc
│   │   │   │   │   ├── icp.h
│   │   │   │   │   ├── run
│   │   │   │   │   ├── server.cc
│   │   │   │   │   └── server.hh
│   │   │   │   ├── ch_3
│   │   │   │   │   ├── Makefile.in
│   │   │   │   │   ├── Makefile.mak
│   │   │   │   │   ├── README
│   │   │   │   │   ├── client.cc
│   │   │   │   │   ├── run
│   │   │   │   │   ├── server.cc
│   │   │   │   │   ├── server.hh
│   │   │   │   │   └── time.idl
│   │   │   │   └── ch_8_and_10
│   │   │   │       ├── CCS.idl
│   │   │   │       ├── Makefile.in
│   │   │   │       ├── Makefile.mak
│   │   │   │       ├── README
│   │   │   │       ├── client.cc
│   │   │   │       ├── icp.cc
│   │   │   │       ├── icp.h
│   │   │   │       ├── run
│   │   │   │       ├── server.cc
│   │   │   │       └── server.hh
│   │   │   ├── chain
│   │   │   │   ├── Chain.idl
│   │   │   │   ├── Chain_impl.cpp
│   │   │   │   ├── Chain_impl.h
│   │   │   │   ├── Client.cpp
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── README
│   │   │   │   ├── Server.cpp
│   │   │   │   └── run
│   │   │   ├── chat
│   │   │   │   ├── Broadcaster.idl
│   │   │   │   ├── BroadcasterAdmin_impl.cpp
│   │   │   │   ├── BroadcasterAdmin_impl.h
│   │   │   │   ├── Broadcaster_impl.cpp
│   │   │   │   ├── Broadcaster_impl.h
│   │   │   │   ├── Client.cpp
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── README
│   │   │   │   ├── Receiver.idl
│   │   │   │   ├── ReceiverBase_impl.cpp
│   │   │   │   ├── ReceiverBase_impl.h
│   │   │   │   ├── Receiver_impl.cpp
│   │   │   │   ├── Receiver_impl.h
│   │   │   │   ├── Server.cpp
│   │   │   │   ├── Windows
│   │   │   │   │   ├── StdAfx.cpp
│   │   │   │   │   ├── WinClient.clw
│   │   │   │   │   ├── WinClient.cpp
│   │   │   │   │   ├── WinClient.dsp
│   │   │   │   │   ├── WinClient.h
│   │   │   │   │   ├── WinClient.mak
│   │   │   │   │   ├── WinClient.rc
│   │   │   │   │   ├── WinClientDlg.cpp
│   │   │   │   │   ├── WinClientDlg.h
│   │   │   │   │   ├── WinClientServerDlg.cpp
│   │   │   │   │   ├── WinClientServerDlg.h
│   │   │   │   │   ├── res
│   │   │   │   │   │   └── WinClient.rc2
│   │   │   │   │   ├── resource.h
│   │   │   │   │   └── stdafx.h
│   │   │   │   └── X11
│   │   │   │       ├── Client.cpp
│   │   │   │       ├── Makefile.in
│   │   │   │       ├── Receiver_impl.cpp
│   │   │   │       └── Receiver_impl.h
│   │   │   ├── custom
│   │   │   │   ├── Client.cpp
│   │   │   │   ├── Customer_impl.cpp
│   │   │   │   ├── Customer_impl.h
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── Pizzeria.idl
│   │   │   │   ├── Pizzeria_impl.cpp
│   │   │   │   ├── Pizzeria_impl.h
│   │   │   │   ├── README
│   │   │   │   ├── Server.cpp
│   │   │   │   └── run
│   │   │   ├── echo
│   │   │   │   ├── Echo.idl
│   │   │   │   ├── EchoClient.cpp
│   │   │   │   ├── EchoServer.cpp
│   │   │   │   ├── Echo_impl.cpp
│   │   │   │   ├── Echo_impl.h
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   └── run
│   │   │   ├── factory
│   │   │   │   ├── Client.cpp
│   │   │   │   ├── Database.cpp
│   │   │   │   ├── Database.h
│   │   │   │   ├── DefaultFactory_impl.cpp
│   │   │   │   ├── DefaultFactory_impl.h
│   │   │   │   ├── Factory.idl
│   │   │   │   ├── LRUReaper.cpp
│   │   │   │   ├── LRUReaper.h
│   │   │   │   ├── LocatorFactory_impl.cpp
│   │   │   │   ├── LocatorFactory_impl.h
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── README
│   │   │   │   ├── ReapTimer.cpp
│   │   │   │   ├── ReapTimer.h
│   │   │   │   ├── Reaper.h
│   │   │   │   ├── Server.cpp
│   │   │   │   └── run
│   │   │   ├── hello
│   │   │   │   ├── Client.cpp
│   │   │   │   ├── Collocated.cpp
│   │   │   │   ├── Hello.idl
│   │   │   │   ├── Hello_impl.cpp
│   │   │   │   ├── Hello_impl.h
│   │   │   │   ├── Hello_impl_tie.cpp
│   │   │   │   ├── Hello_impl_tie.h
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── README
│   │   │   │   ├── Server.cpp
│   │   │   │   ├── Server_tie.cpp
│   │   │   │   └── run
│   │   │   ├── hello_cc
│   │   │   │   ├── Client.cpp
│   │   │   │   ├── Hello.idl
│   │   │   │   ├── Hello_impl.cpp
│   │   │   │   ├── Hello_impl.h
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── README
│   │   │   │   ├── Server.cpp
│   │   │   │   └── run
│   │   │   ├── hello_imr
│   │   │   │   ├── Client.cpp
│   │   │   │   ├── FileLogger.cpp
│   │   │   │   ├── FileLogger.h
│   │   │   │   ├── Hello.idl
│   │   │   │   ├── Hello_impl.cpp
│   │   │   │   ├── Hello_impl.h
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── README
│   │   │   │   ├── Server.cpp
│   │   │   │   ├── Server2.cpp
│   │   │   │   └── run
│   │   │   ├── nested
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── Peer.idl
│   │   │   │   ├── Peer1.cpp
│   │   │   │   ├── Peer2.cpp
│   │   │   │   ├── Peer_impl.cpp
│   │   │   │   ├── Peer_impl.h
│   │   │   │   ├── README
│   │   │   │   └── run
│   │   │   ├── oci_info
│   │   │   │   ├── Client.cpp
│   │   │   │   ├── Hello_impl.cpp
│   │   │   │   ├── Hello_impl.h
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── README
│   │   │   │   ├── Server.cpp
│   │   │   │   └── run
│   │   │   ├── perf
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── nested
│   │   │   │   │   ├── Makefile.in
│   │   │   │   │   ├── Makefile.mak
│   │   │   │   │   ├── Nested.idl
│   │   │   │   │   ├── Nested_impl.cpp
│   │   │   │   │   ├── Nested_impl.h
│   │   │   │   │   ├── Peer1.cpp
│   │   │   │   │   ├── Peer2.cpp
│   │   │   │   │   ├── README
│   │   │   │   │   ├── run
│   │   │   │   │   └── summarize.pl
│   │   │   │   └── simple
│   │   │   │       ├── Client.cpp
│   │   │   │       ├── Makefile.in
│   │   │   │       ├── Makefile.mak
│   │   │   │       ├── README
│   │   │   │       ├── Server.cpp
│   │   │   │       ├── Simple.idl
│   │   │   │       ├── Simple_impl.h
│   │   │   │       ├── run
│   │   │   │       └── summarize.pl
│   │   │   ├── pi
│   │   │   │   ├── CRILogger_impl.cpp
│   │   │   │   ├── CRILogger_impl.h
│   │   │   │   ├── CallStack.idl
│   │   │   │   ├── Client.cpp
│   │   │   │   ├── CorbaOut.cpp
│   │   │   │   ├── CorbaOut.h
│   │   │   │   ├── LoggerPolicy.idl
│   │   │   │   ├── LoggerPolicy_impl.cpp
│   │   │   │   ├── LoggerPolicy_impl.h
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── PIDemo.idl
│   │   │   │   ├── PIDemoDSI_impl.cpp
│   │   │   │   ├── PIDemoDSI_impl.h
│   │   │   │   ├── PIDemo_impl.cpp
│   │   │   │   ├── PIDemo_impl.h
│   │   │   │   ├── README
│   │   │   │   ├── RILogger.cpp
│   │   │   │   ├── RILogger.h
│   │   │   │   ├── SRILogger_impl.cpp
│   │   │   │   ├── SRILogger_impl.h
│   │   │   │   ├── Server.cpp
│   │   │   │   └── run
│   │   │   ├── random
│   │   │   │   ├── Client.cpp
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── README
│   │   │   │   └── Random.idl
│   │   │   ├── repository
│   │   │   │   ├── Client.cpp
│   │   │   │   ├── Demo.idl
│   │   │   │   ├── I_impl.cpp
│   │   │   │   ├── I_impl.h
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── README
│   │   │   │   ├── Server.cpp
│   │   │   │   ├── Value_impl.cpp
│   │   │   │   ├── Value_impl.h
│   │   │   │   └── run
│   │   │   ├── simple
│   │   │   │   ├── Client.cpp
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── README
│   │   │   │   ├── Server.cpp
│   │   │   │   ├── Simple.idl
│   │   │   │   ├── Simple_impl.cpp
│   │   │   │   └── Simple_impl.h
│   │   │   └── value
│   │   │       ├── Client.cpp
│   │   │       ├── EmployeeFactory_impl.cpp
│   │   │       ├── EmployeeFactory_impl.h
│   │   │       ├── Employee_impl.cpp
│   │   │       ├── Employee_impl.h
│   │   │       ├── Finance.idl
│   │   │       ├── Makefile.in
│   │   │       ├── Makefile.mak
│   │   │       ├── README
│   │   │       ├── Server.cpp
│   │   │       └── run
│   │   ├── idl
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   └── OB
│   │   │       ├── AMI.idl
│   │   │       ├── BiDir.idl
│   │   │       ├── BootManager.idl
│   │   │       ├── Bounds.idl
│   │   │       ├── CONV_FRAME.idl
│   │   │       ├── Codec.idl
│   │   │       ├── Current.idl
│   │   │       ├── Custom.idl
│   │   │       ├── Dispatch.idl
│   │   │       ├── Dynamic.idl
│   │   │       ├── DynamicAny.idl
│   │   │       ├── Exceptions.idl
│   │   │       ├── GIOP.idl
│   │   │       ├── IFR.idl
│   │   │       ├── IFR1.idl
│   │   │       ├── IFR2.idl
│   │   │       ├── IFR3.idl
│   │   │       ├── IFR4.idl
│   │   │       ├── IIOP.idl
│   │   │       ├── IMR.idl
│   │   │       ├── IMRORT.idl
│   │   │       ├── IMRState.idl
│   │   │       ├── IMRTypes.idl
│   │   │       ├── IOP.idl
│   │   │       ├── Logger.idl
│   │   │       ├── Makefile.in
│   │   │       ├── Makefile.mak
│   │   │       ├── MessageRouting.idl
│   │   │       ├── Messaging.idl
│   │   │       ├── Native.idl
│   │   │       ├── OADProcessEndpoint.idl
│   │   │       ├── OBORB.idl
│   │   │       ├── OBORBInit.idl
│   │   │       ├── OBPIORT.idl
│   │   │       ├── OBPOAInterface.idl
│   │   │       ├── OBPOAManager.idl
│   │   │       ├── OBPOAPolicies.idl
│   │   │       ├── OBPolicies.idl
│   │   │       ├── OCI.idl
│   │   │       ├── OCIBuffer.idl
│   │   │       ├── OCIClient.idl
│   │   │       ├── OCIClient_IIOP.idl
│   │   │       ├── OCITypes.idl
│   │   │       ├── OCI_IIOP.idl
│   │   │       ├── PI.idl
│   │   │       ├── PIClient.idl
│   │   │       ├── PICommon.idl
│   │   │       ├── PICurrent.idl
│   │   │       ├── PIIOR.idl
│   │   │       ├── PIORBInit.idl
│   │   │       ├── PIORT.idl
│   │   │       ├── PIPolicy.idl
│   │   │       ├── PIRequest.idl
│   │   │       ├── PIServer.idl
│   │   │       ├── POAAdapterActivator.idl
│   │   │       ├── POACommon.idl
│   │   │       ├── POACurrent.idl
│   │   │       ├── POAInterface.idl
│   │   │       ├── POAManager.idl
│   │   │       ├── POAPolicies.idl
│   │   │       ├── POAServantActivator.idl
│   │   │       ├── POAServantLocator.idl
│   │   │       ├── POAServantManager.idl
│   │   │       ├── Policy.idl
│   │   │       ├── PolicyTypes.idl
│   │   │       ├── Pollable.idl
│   │   │       ├── PortableServer.idl
│   │   │       ├── Reactor.idl
│   │   │       ├── ServiceInfo.idl
│   │   │       ├── StringValue.idl
│   │   │       ├── TCKind.idl
│   │   │       ├── TimeBase.idl
│   │   │       ├── TypeCode.idl
│   │   │       ├── Types.idl
│   │   │       ├── URL.idl
│   │   │       ├── UnknownException.idl
│   │   │       ├── WrongTransaction.idl
│   │   │       └── orb.idl
│   │   ├── include
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   └── OB
│   │   │       ├── AMI.h
│   │   │       ├── AMI_skel.h
│   │   │       ├── AbstractBase.h
│   │   │       ├── AbstractBase_fwd.h
│   │   │       ├── Any.h
│   │   │       ├── AnyDeclaration.h
│   │   │       ├── Basic.h
│   │   │       ├── BiDir.h
│   │   │       ├── BiDir_fwd.h
│   │   │       ├── BootManager.h
│   │   │       ├── BootManager_fwd.h
│   │   │       ├── Bounds.h
│   │   │       ├── CONV_FRAME.h
│   │   │       ├── CORBA.h
│   │   │       ├── CORBAClient.h
│   │   │       ├── CORBAServer.h
│   │   │       ├── Client.h
│   │   │       ├── Client_fwd.h
│   │   │       ├── CodeConverters.h
│   │   │       ├── Codec.h
│   │   │       ├── Codec_fwd.h
│   │   │       ├── Config.h.in
│   │   │       ├── Context.h
│   │   │       ├── Context_fwd.h
│   │   │       ├── CoreTraceLevels.h
│   │   │       ├── CoreTraceLevels_fwd.h
│   │   │       ├── Current.h
│   │   │       ├── Current_fwd.h
│   │   │       ├── Custom.h
│   │   │       ├── Custom_fwd.h
│   │   │       ├── DII.h
│   │   │       ├── DII_fwd.h
│   │   │       ├── DSI.h
│   │   │       ├── DSI_fwd.h
│   │   │       ├── DirectStubImpl.h
│   │   │       ├── DirectStubImpl_fwd.h
│   │   │       ├── Dispatch.h
│   │   │       ├── Dispatch_fwd.h
│   │   │       ├── Downcall.h
│   │   │       ├── Downcall_fwd.h
│   │   │       ├── Dynamic.h
│   │   │       ├── DynamicAny.h
│   │   │       ├── DynamicAny_fwd.h
│   │   │       ├── Dynamic_fwd.h
│   │   │       ├── Dynamic_skel.h
│   │   │       ├── Environment.h
│   │   │       ├── Environment_fwd.h
│   │   │       ├── EventHandlerBase.h
│   │   │       ├── EventHandlerBase_fwd.h
│   │   │       ├── Except.h
│   │   │       ├── ExceptionHolder_impl.h
│   │   │       ├── Exceptions.h
│   │   │       ├── Fixed.h
│   │   │       ├── GIOP.h
│   │   │       ├── GIOPMessage.h
│   │   │       ├── GIOP_skel.h
│   │   │       ├── Hashtable.h
│   │   │       ├── HashtableI.h
│   │   │       ├── IFR.h
│   │   │       ├── IFR1.h
│   │   │       ├── IFR1_fwd.h
│   │   │       ├── IFR1_skel.h
│   │   │       ├── IFR2.h
│   │   │       ├── IFR2_fwd.h
│   │   │       ├── IFR2_skel.h
│   │   │       ├── IFR3.h
│   │   │       ├── IFR3_fwd.h
│   │   │       ├── IFR3_skel.h
│   │   │       ├── IFR4.h
│   │   │       ├── IFR4_fwd.h
│   │   │       ├── IFR4_skel.h
│   │   │       ├── IFR_fwd.h
│   │   │       ├── IIOP.h
│   │   │       ├── IMRORT.h
│   │   │       ├── IMRORT_fwd.h
│   │   │       ├── IMRORT_impl.h
│   │   │       ├── IMRState.h
│   │   │       ├── IMRState_fwd.h
│   │   │       ├── IMRState_skel.h
│   │   │       ├── IMRTypes.h
│   │   │       ├── IMRTypes_skel.h
│   │   │       ├── INS.h
│   │   │       ├── IOP.h
│   │   │       ├── IOP_skel.h
│   │   │       ├── IORUtil.h
│   │   │       ├── InitialServiceManager.h
│   │   │       ├── InitialServiceManager_fwd.h
│   │   │       ├── LFThreadPool.h
│   │   │       ├── LoadUpdaterInit.h
│   │   │       ├── LocalObject.h
│   │   │       ├── LocalObject_fwd.h
│   │   │       ├── Logger.h
│   │   │       ├── Logger_fwd.h
│   │   │       ├── Makefile.in
│   │   │       ├── Makefile.mak
│   │   │       ├── MarshalStubImpl.h
│   │   │       ├── MarshalStubImpl_fwd.h
│   │   │       ├── MessageRouting.h
│   │   │       ├── MessageRoutingUtil.h
│   │   │       ├── MessageRouting_skel.h
│   │   │       ├── Messaging.h
│   │   │       ├── Messaging_fwd.h
│   │   │       ├── Messaging_skel.h
│   │   │       ├── MultiRequestSender.h
│   │   │       ├── MultiRequestSender_fwd.h
│   │   │       ├── NTService.h
│   │   │       ├── NamedValue.h
│   │   │       ├── NamedValue_fwd.h
│   │   │       ├── Native.h
│   │   │       ├── NativeTypes.h
│   │   │       ├── Net.h
│   │   │       ├── OADProcessEndpoint.h
│   │   │       ├── OADProcessEndpoint_fwd.h
│   │   │       ├── OADProcessEndpoint_skel.h
│   │   │       ├── OAInterface.h
│   │   │       ├── OAInterface_fwd.h
│   │   │       ├── OBORB.h
│   │   │       ├── OBORBInit.h
│   │   │       ├── OBORBInit_fwd.h
│   │   │       ├── OBORB_fwd.h
│   │   │       ├── OBObject.h
│   │   │       ├── OBObject_fwd.h
│   │   │       ├── OBPIORT.h
│   │   │       ├── OBPIORT_fwd.h
│   │   │       ├── OBPOAInterface.h
│   │   │       ├── OBPOAInterface_fwd.h
│   │   │       ├── OBPOAManager.h
│   │   │       ├── OBPOAManager_fwd.h
│   │   │       ├── OBPOAPolicies.h
│   │   │       ├── OBPOAPolicies_fwd.h
│   │   │       ├── OBPOAPolicyType.h
│   │   │       ├── OBPolicies.h
│   │   │       ├── OBPolicies_fwd.h
│   │   │       ├── OBWindows.h
│   │   │       ├── OB_Extras.h
│   │   │       ├── OCI.h
│   │   │       ├── OCIBuffer.h
│   │   │       ├── OCIBuffer_fwd.h
│   │   │       ├── OCIClient.h
│   │   │       ├── OCIClient_IIOP.h
│   │   │       ├── OCIClient_IIOP_fwd.h
│   │   │       ├── OCIClient_fwd.h
│   │   │       ├── OCITypes.h
│   │   │       ├── OCIUtils.h
│   │   │       ├── OCI_IIOP.h
│   │   │       ├── OCI_IIOP_fwd.h
│   │   │       ├── OCI_IIOP_init.h
│   │   │       ├── OCI_fwd.h
│   │   │       ├── OCI_init.h
│   │   │       ├── ORBControl.h
│   │   │       ├── ORBControl_fwd.h
│   │   │       ├── ORBInstance.h
│   │   │       ├── ORBInstance_fwd.h
│   │   │       ├── ORB_init.h
│   │   │       ├── Object.h
│   │   │       ├── ObjectIdHasher.h
│   │   │       ├── ObjectKey.h
│   │   │       ├── Object_fwd.h
│   │   │       ├── Options.h
│   │   │       ├── PI.h
│   │   │       ├── PIArgs.h
│   │   │       ├── PIClient.h
│   │   │       ├── PIClient_fwd.h
│   │   │       ├── PICommon.h
│   │   │       ├── PICommon_fwd.h
│   │   │       ├── PICommon_skel.h
│   │   │       ├── PICurrent.h
│   │   │       ├── PICurrent_fwd.h
│   │   │       ├── PIIOR.h
│   │   │       ├── PIIOR_fwd.h
│   │   │       ├── PIManager.h
│   │   │       ├── PIManager_fwd.h
│   │   │       ├── PIORBInit.h
│   │   │       ├── PIORBInit_fwd.h
│   │   │       ├── PIORT.h
│   │   │       ├── PIORT_fwd.h
│   │   │       ├── PIORT_skel.h
│   │   │       ├── PIPolicy.h
│   │   │       ├── PIPolicy_fwd.h
│   │   │       ├── PIRequest.h
│   │   │       ├── PIRequest_fwd.h
│   │   │       ├── PIServer.h
│   │   │       ├── PIServer_fwd.h
│   │   │       ├── PI_fwd.h
│   │   │       ├── PI_init.h
│   │   │       ├── POAAdapterActivator.h
│   │   │       ├── POAAdapterActivator_fwd.h
│   │   │       ├── POAAdapterActivator_skel.h
│   │   │       ├── POACommon.h
│   │   │       ├── POACommon_fwd.h
│   │   │       ├── POACommon_skel.h
│   │   │       ├── POACurrent.h
│   │   │       ├── POACurrent_fwd.h
│   │   │       ├── POAInterface.h
│   │   │       ├── POAInterface_fwd.h
│   │   │       ├── POAInterface_skel.h
│   │   │       ├── POAManager.h
│   │   │       ├── POAManager_fwd.h
│   │   │       ├── POAPolicies.h
│   │   │       ├── POAPolicies_fwd.h
│   │   │       ├── POAPolicyType.h
│   │   │       ├── POAServantActivator.h
│   │   │       ├── POAServantActivator_fwd.h
│   │   │       ├── POAServantActivator_skel.h
│   │   │       ├── POAServantBase.h
│   │   │       ├── POAServantBase_fwd.h
│   │   │       ├── POAServantLocator.h
│   │   │       ├── POAServantLocator_fwd.h
│   │   │       ├── POAServantLocator_skel.h
│   │   │       ├── POAServantManager.h
│   │   │       ├── POAServantManager_fwd.h
│   │   │       ├── POAServantManager_skel.h
│   │   │       ├── PluginManager.h
│   │   │       ├── PluginManager_fwd.h
│   │   │       ├── Policy.h
│   │   │       ├── PolicyFactoryManager.h
│   │   │       ├── PolicyFactoryManager_fwd.h
│   │   │       ├── PolicyTypes.h
│   │   │       ├── PolicyTypes_skel.h
│   │   │       ├── Policy_fwd.h
│   │   │       ├── Policy_skel.h
│   │   │       ├── Pollable.h
│   │   │       ├── PollableSetImpl.h
│   │   │       ├── Pollable_fwd.h
│   │   │       ├── Pollable_skel.h
│   │   │       ├── PortableInterceptor.h
│   │   │       ├── PortableServer.h
│   │   │       ├── PortableServer_fwd.h
│   │   │       ├── Principal.h
│   │   │       ├── Principal_fwd.h
│   │   │       ├── Properties.h
│   │   │       ├── Properties_fwd.h
│   │   │       ├── Reactor.h
│   │   │       ├── Reactor_fwd.h
│   │   │       ├── RefCount_Ts_Aix.h
│   │   │       ├── RefCount_Ts_Generic.h
│   │   │       ├── RefCount_Ts_Linux-x86-32.h
│   │   │       ├── RefCount_Ts_Linux-x86-64.h
│   │   │       ├── RefCount_Ts_Win32.h
│   │   │       ├── RefCounted.h
│   │   │       ├── RefCounted_fwd.h
│   │   │       ├── RouterAdminPolicies_impl.h
│   │   │       ├── STLConfig.h
│   │   │       ├── ServiceInfo.h
│   │   │       ├── ServiceInfo_fwd.h
│   │   │       ├── Stream.h
│   │   │       ├── Stream_fwd.h
│   │   │       ├── StringValue.h
│   │   │       ├── StringValue_fwd.h
│   │   │       ├── StubImpl.h
│   │   │       ├── StubImpl_fwd.h
│   │   │       ├── TCKind.h
│   │   │       ├── Template.h
│   │   │       ├── TemplateI.h
│   │   │       ├── TimeBase.h
│   │   │       ├── TimeBase_fwd.h
│   │   │       ├── TimeBase_skel.h
│   │   │       ├── TimeHelper.h
│   │   │       ├── Timer.h
│   │   │       ├── Trace.h
│   │   │       ├── TypeCode.h
│   │   │       ├── TypeCodeCache.h
│   │   │       ├── TypeCodeConst.h
│   │   │       ├── TypeCodeConst_fwd.h
│   │   │       ├── TypeCode_fwd.h
│   │   │       ├── TypeCode_skel.h
│   │   │       ├── Types.h
│   │   │       ├── Types_skel.h
│   │   │       ├── URL.h
│   │   │       ├── URL_fwd.h
│   │   │       ├── UnknownException.h
│   │   │       ├── UnknownException_fwd.h
│   │   │       ├── Upcall.h
│   │   │       ├── Upcall_fwd.h
│   │   │       ├── UserExceptionRaiseProxy.h
│   │   │       ├── ValueBase.h
│   │   │       ├── ValueBase_fwd.h
│   │   │       ├── ValueFactoryBase.h
│   │   │       ├── ValueFactoryBase_fwd.h
│   │   │       ├── ValueFactoryManager.h
│   │   │       ├── ValueFactoryManager_fwd.h
│   │   │       ├── ValueReaderWriter.h
│   │   │       ├── ValueReaderWriter_fwd.h
│   │   │       ├── WrongTransaction.h
│   │   │       ├── X11.h
│   │   │       ├── algorithms.h
│   │   │       ├── allocator.h
│   │   │       ├── function.h
│   │   │       ├── iterator.h
│   │   │       ├── list.h
│   │   │       ├── orb.h
│   │   │       ├── orb_skel.h
│   │   │       └── seq_converter.h
│   │   ├── man
│   │   │   ├── Makefile.in
│   │   │   └── man1
│   │   │       ├── Makefile.in
│   │   │       ├── anydump.1
│   │   │       ├── idl.1
│   │   │       └── iordump.1
│   │   ├── rundemos
│   │   ├── runtest
│   │   ├── src
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   ├── imr
│   │   │   │   ├── ActiveStateFactory.cpp
│   │   │   │   ├── ActiveStateFactory.h
│   │   │   │   ├── Admin.cpp
│   │   │   │   ├── DBUpgrade.cpp
│   │   │   │   ├── Database.cpp
│   │   │   │   ├── Database.h
│   │   │   │   ├── DatabaseUpgrade.cpp
│   │   │   │   ├── DatabaseUpgrade.h
│   │   │   │   ├── IMRDB.idl
│   │   │   │   ├── IMRInternal.idl
│   │   │   │   ├── IMRLogger.cpp
│   │   │   │   ├── IMRLogger.h
│   │   │   │   ├── IMRLogger_fwd.h
│   │   │   │   ├── IMRMain.cpp
│   │   │   │   ├── IMRMsg.h
│   │   │   │   ├── IMRMsg.mc
│   │   │   │   ├── IMRMsg.rc
│   │   │   │   ├── IMROAD.idl
│   │   │   │   ├── IMRServer.cpp
│   │   │   │   ├── IMRServer.h
│   │   │   │   ├── IMRState_skel.cpp
│   │   │   │   ├── IMRUtil.cpp
│   │   │   │   ├── IMRUtil.h
│   │   │   │   ├── InternalDomain_impl.cpp
│   │   │   │   ├── InternalDomain_impl.h
│   │   │   │   ├── InternalServer_impl.cpp
│   │   │   │   ├── InternalServer_impl.h
│   │   │   │   ├── LocationForwarder.cpp
│   │   │   │   ├── LocationForwarder.h
│   │   │   │   ├── MSG00001.bin
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── Mkref.cpp
│   │   │   │   ├── NTIMRMain.cpp
│   │   │   │   ├── NTIMRService.cpp
│   │   │   │   ├── NTIMRService.h
│   │   │   │   ├── OAD.idl
│   │   │   │   ├── OADDB.idl
│   │   │   │   ├── OADDatabase.cpp
│   │   │   │   ├── OADDatabase.h
│   │   │   │   ├── OADEndpointManager_impl.cpp
│   │   │   │   ├── OADEndpointManager_impl.h
│   │   │   │   ├── OADServer.cpp
│   │   │   │   ├── OADServer.h
│   │   │   │   ├── OADTypes.idl
│   │   │   │   ├── OSLayer.h
│   │   │   │   ├── ObjectLocator.cpp
│   │   │   │   ├── ObjectLocator.h
│   │   │   │   ├── ProcController.cpp
│   │   │   │   ├── ProcController.h
│   │   │   │   ├── ProcObserver.cpp
│   │   │   │   ├── ProcObserver.h
│   │   │   │   ├── ProcessController_impl.cpp
│   │   │   │   ├── ProcessController_impl.h
│   │   │   │   ├── ProcessDatabase.cpp
│   │   │   │   ├── ProcessDatabase.h
│   │   │   │   ├── ProcessEndpointManager_impl.cpp
│   │   │   │   ├── ProcessEndpointManager_impl.h
│   │   │   │   ├── ServerDatabase.cpp
│   │   │   │   ├── ServerDatabase.h
│   │   │   │   ├── ServerFactory_impl.cpp
│   │   │   │   ├── ServerFactory_impl.h
│   │   │   │   ├── ServerObserver_impl.cpp
│   │   │   │   ├── ServerObserver_impl.h
│   │   │   │   ├── ServerRecord.cpp
│   │   │   │   ├── ServerRecord.h
│   │   │   │   ├── ServerRecord_fwd.h
│   │   │   │   ├── ServerStarter.cpp
│   │   │   │   ├── ServerStarter.h
│   │   │   │   ├── Server_impl.cpp
│   │   │   │   └── Server_impl.h
│   │   │   ├── library
│   │   │   │   ├── AbstractBase.cpp
│   │   │   │   ├── Any.cpp
│   │   │   │   ├── Basic.cpp
│   │   │   │   ├── BiDir.cpp
│   │   │   │   ├── BiDirIIOP_impl.cpp
│   │   │   │   ├── BiDirIIOP_impl.h
│   │   │   │   ├── BiDir_impl.cpp
│   │   │   │   ├── BiDir_impl.h
│   │   │   │   ├── BootManager.cpp
│   │   │   │   ├── BootManager_impl.cpp
│   │   │   │   ├── BootManager_impl.h
│   │   │   │   ├── Bounds.cpp
│   │   │   │   ├── CONV_FRAME.cpp
│   │   │   │   ├── CharMapDatabaseInit.cpp
│   │   │   │   ├── Client.cpp
│   │   │   │   ├── CodeConverter.cpp
│   │   │   │   ├── CodeConverter.h
│   │   │   │   ├── CodeConverters.cpp
│   │   │   │   ├── CodeSetDatabase.cpp
│   │   │   │   ├── CodeSetDatabase.h
│   │   │   │   ├── CodeSetDatabaseInit.cpp
│   │   │   │   ├── CodeSetUtil.cpp
│   │   │   │   ├── CodeSetUtil.h
│   │   │   │   ├── Codec.cpp
│   │   │   │   ├── CodecFactory_impl.cpp
│   │   │   │   ├── CodecFactory_impl.h
│   │   │   │   ├── CollocatedClient.cpp
│   │   │   │   ├── CollocatedClient.h
│   │   │   │   ├── CollocatedClient_fwd.h
│   │   │   │   ├── CollocatedServer.cpp
│   │   │   │   ├── CollocatedServer.h
│   │   │   │   ├── CollocatedServer_fwd.h
│   │   │   │   ├── Context.cpp
│   │   │   │   ├── CoreTraceLevels.cpp
│   │   │   │   ├── Current.cpp
│   │   │   │   ├── Custom.cpp
│   │   │   │   ├── Custom_impl.cpp
│   │   │   │   ├── Custom_impl.h
│   │   │   │   ├── DII.cpp
│   │   │   │   ├── DSI.cpp
│   │   │   │   ├── DirectStubImpl.cpp
│   │   │   │   ├── Dispatch.cpp
│   │   │   │   ├── DispatchRequest_impl.cpp
│   │   │   │   ├── DispatchRequest_impl.h
│   │   │   │   ├── Dispatch_impl.cpp
│   │   │   │   ├── Dispatch_impl.h
│   │   │   │   ├── Downcall.cpp
│   │   │   │   ├── Dynamic.cpp
│   │   │   │   ├── DynamicAny.cpp
│   │   │   │   ├── DynamicAny_impl.cpp
│   │   │   │   ├── DynamicAny_impl.h
│   │   │   │   ├── Environment.cpp
│   │   │   │   ├── EventHandlerBase.cpp
│   │   │   │   ├── Except.cpp
│   │   │   │   ├── ExceptionHolder_impl.cpp
│   │   │   │   ├── Exceptions.cpp
│   │   │   │   ├── Fixed.cpp
│   │   │   │   ├── GIOP.cpp
│   │   │   │   ├── GIOPClient.cpp
│   │   │   │   ├── GIOPClient.h
│   │   │   │   ├── GIOPClient_fwd.h
│   │   │   │   ├── GIOPConnection.cpp
│   │   │   │   ├── GIOPConnection.h
│   │   │   │   ├── GIOPConnectionLeaderFollower.cpp
│   │   │   │   ├── GIOPConnectionLeaderFollower.h
│   │   │   │   ├── GIOPConnectionReactive.cpp
│   │   │   │   ├── GIOPConnectionReactive.h
│   │   │   │   ├── GIOPConnectionThreaded.cpp
│   │   │   │   ├── GIOPConnectionThreaded.h
│   │   │   │   ├── GIOPConnection_fwd.h
│   │   │   │   ├── GIOPMessage.cpp
│   │   │   │   ├── GIOPServer.cpp
│   │   │   │   ├── GIOPServer.h
│   │   │   │   ├── GIOPServerStarter.cpp
│   │   │   │   ├── GIOPServerStarter.h
│   │   │   │   ├── GIOPServerStarterReactive.cpp
│   │   │   │   ├── GIOPServerStarterThreaded.cpp
│   │   │   │   ├── GIOPServerStarter_fwd.h
│   │   │   │   ├── GIOPServer_fwd.h
│   │   │   │   ├── Hashtable.cpp
│   │   │   │   ├── IDStrategy.cpp
│   │   │   │   ├── IDStrategy.h
│   │   │   │   ├── IFR1.cpp
│   │   │   │   ├── IFR2.cpp
│   │   │   │   ├── IFR3.cpp
│   │   │   │   ├── IFR4.cpp
│   │   │   │   ├── IIOP.cpp
│   │   │   │   ├── IIOPUtil.cpp
│   │   │   │   ├── IIOPUtil.h
│   │   │   │   ├── IMRORT.cpp
│   │   │   │   ├── IMRORT_impl.cpp
│   │   │   │   ├── IMRState.cpp
│   │   │   │   ├── IMRTypes.cpp
│   │   │   │   ├── INS.cpp
│   │   │   │   ├── IOP.cpp
│   │   │   │   ├── IORUtil.cpp
│   │   │   │   ├── InitialServiceManager.cpp
│   │   │   │   ├── LFThreadPoolReactor.cpp
│   │   │   │   ├── LFThreadPoolReactor.h
│   │   │   │   ├── LFThreadPoolReactor_fwd.h
│   │   │   │   ├── LocalObject.cpp
│   │   │   │   ├── Logger.cpp
│   │   │   │   ├── Logger_impl.cpp
│   │   │   │   ├── Logger_impl.h
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── MarshalStubImpl.cpp
│   │   │   │   ├── MessageQueue.cpp
│   │   │   │   ├── MessageQueue.h
│   │   │   │   ├── MessageRouting.cpp
│   │   │   │   ├── MessageRoutingUtil.cpp
│   │   │   │   ├── MessageRouting_skel.cpp
│   │   │   │   ├── Messaging.cpp
│   │   │   │   ├── Messaging_impl.cpp
│   │   │   │   ├── Messaging_impl.h
│   │   │   │   ├── Messaging_skel.cpp
│   │   │   │   ├── ModuleManager.cpp
│   │   │   │   ├── ModuleManager.h
│   │   │   │   ├── MultiRequestSender.cpp
│   │   │   │   ├── NTService.cpp
│   │   │   │   ├── NamedValue.cpp
│   │   │   │   ├── Net.cpp
│   │   │   │   ├── OADProcessEndpoint.cpp
│   │   │   │   ├── OADProcessEndpoint_impl.cpp
│   │   │   │   ├── OADProcessEndpoint_impl.h
│   │   │   │   ├── OADProcessEndpoint_skel.cpp
│   │   │   │   ├── OBORB.cpp
│   │   │   │   ├── OBORBInit.cpp
│   │   │   │   ├── OBORBInitInfo_impl.cpp
│   │   │   │   ├── OBORBInitInfo_impl.h
│   │   │   │   ├── OBObject.cpp
│   │   │   │   ├── OBPIORT.cpp
│   │   │   │   ├── OBPOAInterface.cpp
│   │   │   │   ├── OBPOAManager.cpp
│   │   │   │   ├── OBPOAPolicies.cpp
│   │   │   │   ├── OBPOAPolicyType.cpp
│   │   │   │   ├── OBPolicies.cpp
│   │   │   │   ├── OBPolicies_impl.cpp
│   │   │   │   ├── OBPolicies_impl.h
│   │   │   │   ├── OCI.cpp
│   │   │   │   ├── OCIBuffer.cpp
│   │   │   │   ├── OCIClient.cpp
│   │   │   │   ├── OCIClient_IIOP.cpp
│   │   │   │   ├── OCITypes.cpp
│   │   │   │   ├── OCI_IIOP.cpp
│   │   │   │   ├── OCI_IIOP_impl.cpp
│   │   │   │   ├── OCI_IIOP_impl.h
│   │   │   │   ├── OCI_IIOP_init.cpp
│   │   │   │   ├── OCI_impl.cpp
│   │   │   │   ├── OCI_impl.h
│   │   │   │   ├── OCI_init.cpp
│   │   │   │   ├── ORBControl.cpp
│   │   │   │   ├── ORBInstance.cpp
│   │   │   │   ├── ORBPolicyFactory.cpp
│   │   │   │   ├── ORBPolicyManager_impl.cpp
│   │   │   │   ├── ORBPolicyManager_impl.h
│   │   │   │   ├── ORB_impl.cpp
│   │   │   │   ├── ORB_impl.h
│   │   │   │   ├── ORB_init.cpp
│   │   │   │   ├── Object.cpp
│   │   │   │   ├── ObjectIdHasher.cpp
│   │   │   │   ├── ObjectKey.cpp
│   │   │   │   ├── PI.cpp
│   │   │   │   ├── PIArgStrategy.cpp
│   │   │   │   ├── PIArgStrategy.h
│   │   │   │   ├── PIClient.cpp
│   │   │   │   ├── PIClient_impl.cpp
│   │   │   │   ├── PIClient_impl.h
│   │   │   │   ├── PICommon.cpp
│   │   │   │   ├── PICurrent.cpp
│   │   │   │   ├── PICurrent_impl.cpp
│   │   │   │   ├── PICurrent_impl.h
│   │   │   │   ├── PIIOR.cpp
│   │   │   │   ├── PIIORInfo_impl.cpp
│   │   │   │   ├── PIIORInfo_impl.h
│   │   │   │   ├── PIManager.cpp
│   │   │   │   ├── PIORBInit.cpp
│   │   │   │   ├── PIORT.cpp
│   │   │   │   ├── PIORT_impl.cpp
│   │   │   │   ├── PIORT_impl.h
│   │   │   │   ├── PIPolicy.cpp
│   │   │   │   ├── PIRequest.cpp
│   │   │   │   ├── PIRequest_impl.cpp
│   │   │   │   ├── PIRequest_impl.h
│   │   │   │   ├── PIServer.cpp
│   │   │   │   ├── PIServer_impl.cpp
│   │   │   │   ├── PIServer_impl.h
│   │   │   │   ├── POAAdapterActivator.cpp
│   │   │   │   ├── POAAdapterActivator_skel.cpp
│   │   │   │   ├── POACommon.cpp
│   │   │   │   ├── POACommon_skel.cpp
│   │   │   │   ├── POAControl.cpp
│   │   │   │   ├── POAControl.h
│   │   │   │   ├── POACurrent.cpp
│   │   │   │   ├── POACurrent_impl.cpp
│   │   │   │   ├── POACurrent_impl.h
│   │   │   │   ├── POAInterface.cpp
│   │   │   │   ├── POALocator.cpp
│   │   │   │   ├── POALocator.h
│   │   │   │   ├── POAManager.cpp
│   │   │   │   ├── POAManagerFactory_impl.cpp
│   │   │   │   ├── POAManagerFactory_impl.h
│   │   │   │   ├── POAManager_impl.cpp
│   │   │   │   ├── POAManager_impl.h
│   │   │   │   ├── POAOAInterface_impl.cpp
│   │   │   │   ├── POAOAInterface_impl.h
│   │   │   │   ├── POAPolicies.cpp
│   │   │   │   ├── POAPolicies_impl.cpp
│   │   │   │   ├── POAPolicies_impl.h
│   │   │   │   ├── POAPolicyType.cpp
│   │   │   │   ├── POAServantActivator.cpp
│   │   │   │   ├── POAServantActivator_skel.cpp
│   │   │   │   ├── POAServantBase.cpp
│   │   │   │   ├── POAServantLocator.cpp
│   │   │   │   ├── POAServantLocator_skel.cpp
│   │   │   │   ├── POAServantManager.cpp
│   │   │   │   ├── POAStrategy.cpp
│   │   │   │   ├── POAStrategy.h
│   │   │   │   ├── POA_impl.cpp
│   │   │   │   ├── POA_impl.h
│   │   │   │   ├── ParseParams.cpp
│   │   │   │   ├── ParseParams.h
│   │   │   │   ├── PluginManager.cpp
│   │   │   │   ├── Policy.cpp
│   │   │   │   ├── PolicyFactoryManager.cpp
│   │   │   │   ├── PolicyTypes.cpp
│   │   │   │   ├── Policy_skel.cpp
│   │   │   │   ├── Pollable.cpp
│   │   │   │   ├── PollableSetImpl.cpp
│   │   │   │   ├── PortableServer.cpp
│   │   │   │   ├── PortableServerGlobal.cpp
│   │   │   │   ├── Principal.cpp
│   │   │   │   ├── Properties.cpp
│   │   │   │   ├── Reactor.cpp
│   │   │   │   ├── RefCounted.cpp
│   │   │   │   ├── RouterAdminPolicies_impl.cpp
│   │   │   │   ├── SelectReactor.cpp
│   │   │   │   ├── SelectReactor.h
│   │   │   │   ├── Sequence.cpp
│   │   │   │   ├── Server.cpp
│   │   │   │   ├── Server.h
│   │   │   │   ├── Server_fwd.h
│   │   │   │   ├── ServiceInfo.cpp
│   │   │   │   ├── SharedLibrary.cpp
│   │   │   │   ├── SharedLibrary.h
│   │   │   │   ├── Stream.cpp
│   │   │   │   ├── StringValue.cpp
│   │   │   │   ├── StubImpl.cpp
│   │   │   │   ├── TCKind.cpp
│   │   │   │   ├── TimeBase.cpp
│   │   │   │   ├── TimeHelper.cpp
│   │   │   │   ├── Timer.cpp
│   │   │   │   ├── Trace.cpp
│   │   │   │   ├── TypeCode.cpp
│   │   │   │   ├── TypeCodeCache.cpp
│   │   │   │   ├── TypeCodeFactory.cpp
│   │   │   │   ├── TypeCodeFactory.h
│   │   │   │   ├── Types.cpp
│   │   │   │   ├── URL.cpp
│   │   │   │   ├── URLUtil.h
│   │   │   │   ├── URL_impl.cpp
│   │   │   │   ├── URL_impl.h
│   │   │   │   ├── UnknownException.cpp
│   │   │   │   ├── UnknownException_impl.cpp
│   │   │   │   ├── UnknownException_impl.h
│   │   │   │   ├── UnsentMessage.cpp
│   │   │   │   ├── UnsentMessage.h
│   │   │   │   ├── Upcall.cpp
│   │   │   │   ├── UserExceptionRaiseProxy.cpp
│   │   │   │   ├── ValueBase.cpp
│   │   │   │   ├── ValueFactoryBase.cpp
│   │   │   │   ├── ValueFactoryManager.cpp
│   │   │   │   ├── ValueReaderWriter.cpp
│   │   │   │   ├── WinReactor.cpp
│   │   │   │   ├── WinReactor.h
│   │   │   │   ├── WrongTransaction.cpp
│   │   │   │   ├── X11Reactor.cpp
│   │   │   │   └── X11Reactor.h
│   │   │   ├── translator
│   │   │   │   ├── AnyValue.cpp
│   │   │   │   ├── AnyValue.h
│   │   │   │   ├── AsyncUtil.cpp
│   │   │   │   ├── AsyncUtil.h
│   │   │   │   ├── CPPUtil.cpp
│   │   │   │   ├── CPPUtil.h
│   │   │   │   ├── Del.cpp
│   │   │   │   ├── Feed.cpp
│   │   │   │   ├── Gen.cpp
│   │   │   │   ├── GenCPP.cpp
│   │   │   │   ├── GenCPP.h
│   │   │   │   ├── GenCPPC.cpp
│   │   │   │   ├── GenCPPFwdH.cpp
│   │   │   │   ├── GenCPPH.cpp
│   │   │   │   ├── GenCPPImplC.cpp
│   │   │   │   ├── GenCPPImplH.cpp
│   │   │   │   ├── GenCPPSkelC.cpp
│   │   │   │   ├── GenCPPSkelH.cpp
│   │   │   │   ├── GenCPPTieH.cpp
│   │   │   │   ├── GenCPPUtil.cpp
│   │   │   │   ├── GenECPPImplC.cpp
│   │   │   │   ├── GenECPPImplH.cpp
│   │   │   │   ├── GenHTML.cpp
│   │   │   │   ├── GenHTML.h
│   │   │   │   ├── GenHTMLUtil.cpp
│   │   │   │   ├── GenJava.cpp
│   │   │   │   ├── GenJava.h
│   │   │   │   ├── GenJavaUtil.cpp
│   │   │   │   ├── GenRTF.cpp
│   │   │   │   ├── GenRTF.h
│   │   │   │   ├── GenRTFUtil.cpp
│   │   │   │   ├── GenRTFUtil.h
│   │   │   │   ├── GenTextBase.cpp
│   │   │   │   ├── GenTextBase.h
│   │   │   │   ├── GenUtil.cpp
│   │   │   │   ├── GenUtil.h
│   │   │   │   ├── Gram.cpp
│   │   │   │   ├── Gram.h
│   │   │   │   ├── Gram.output
│   │   │   │   ├── Gram.y
│   │   │   │   ├── GramUtil.cpp
│   │   │   │   ├── GramUtil.h
│   │   │   │   ├── HIDL.cpp
│   │   │   │   ├── IDL.cpp
│   │   │   │   ├── IFR1_impl.cpp
│   │   │   │   ├── IFR1_impl.h
│   │   │   │   ├── IFR1_skel.cpp
│   │   │   │   ├── IFR2_impl.cpp
│   │   │   │   ├── IFR2_impl.h
│   │   │   │   ├── IFR2_skel.cpp
│   │   │   │   ├── IFR3_impl.cpp
│   │   │   │   ├── IFR3_impl.h
│   │   │   │   ├── IFR3_skel.cpp
│   │   │   │   ├── IFR4_impl.cpp
│   │   │   │   ├── IFR4_impl.h
│   │   │   │   ├── IFR4_skel.cpp
│   │   │   │   ├── IRMsg.mc
│   │   │   │   ├── JIDL.cpp
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── NTIRMain.cpp
│   │   │   │   ├── NTIRService.cpp
│   │   │   │   ├── NTIRService.h
│   │   │   │   ├── RIDL.cpp
│   │   │   │   ├── Scan.cpp
│   │   │   │   ├── Scan.l
│   │   │   │   ├── Server.cpp
│   │   │   │   ├── Util.cpp
│   │   │   │   ├── Util.h
│   │   │   │   ├── mcpp
│   │   │   │   │   ├── Makefile.in
│   │   │   │   │   ├── Makefile.mak
│   │   │   │   │   ├── cc1.c
│   │   │   │   │   ├── directive.c
│   │   │   │   │   ├── eval.c
│   │   │   │   │   ├── expand.c
│   │   │   │   │   ├── internal.H
│   │   │   │   │   ├── lib.c
│   │   │   │   │   ├── main.c
│   │   │   │   │   ├── main_libmcpp.c
│   │   │   │   │   ├── mbchar.c
│   │   │   │   │   ├── mcpp_lib.def
│   │   │   │   │   ├── mcpp_lib.h
│   │   │   │   │   ├── mcpp_out.h
│   │   │   │   │   ├── noconfig.H
│   │   │   │   │   ├── preproc.c
│   │   │   │   │   ├── support.c
│   │   │   │   │   ├── system.H
│   │   │   │   │   ├── system.c
│   │   │   │   │   └── testmain.c
│   │   │   │   └── wininclude
│   │   │   │       └── unistd.h
│   │   │   └── util
│   │   │       ├── AnyDump.cpp
│   │   │       ├── IORDump.cpp
│   │   │       ├── IORMerge.cpp
│   │   │       ├── Makefile.in
│   │   │       ├── Makefile.mak
│   │   │       └── RegUpdate.cpp
│   │   └── test
│   │       ├── Makefile.in
│   │       ├── Makefile.mak
│   │       ├── codesets
│   │       │   ├── Client.cpp
│   │       │   ├── Makefile.in
│   │       │   ├── Makefile.mak
│   │       │   ├── Server.cpp
│   │       │   ├── TestCodeSets.idl
│   │       │   ├── TestCodeSets_impl.cpp
│   │       │   ├── TestCodeSets_impl.h
│   │       │   └── runtest
│   │       ├── idl
│   │       │   ├── const1.err
│   │       │   ├── const1.idl
│   │       │   ├── enum1.err
│   │       │   ├── enum1.idl
│   │       │   ├── enum2.err
│   │       │   ├── enum2.idl
│   │       │   ├── except1.err
│   │       │   ├── except1.idl
│   │       │   ├── except2.err
│   │       │   ├── except2.idl
│   │       │   ├── forward1.err
│   │       │   ├── forward1.idl
│   │       │   ├── forward2.err
│   │       │   ├── forward2.idl
│   │       │   ├── forward3.err
│   │       │   ├── forward3.idl
│   │       │   ├── local1.err
│   │       │   ├── local1.idl
│   │       │   ├── local2.err
│   │       │   ├── local2.idl
│   │       │   ├── local3.err
│   │       │   ├── local3.idl
│   │       │   ├── local4.err
│   │       │   ├── local4.idl
│   │       │   ├── local5.err
│   │       │   ├── local5.idl
│   │       │   ├── mult1.err
│   │       │   ├── mult1.idl
│   │       │   ├── mult2.err
│   │       │   ├── mult2.idl
│   │       │   ├── mult3.err
│   │       │   ├── mult3.idl
│   │       │   ├── nest1.err
│   │       │   ├── nest1.idl
│   │       │   ├── nest2.err
│   │       │   ├── nest2.idl
│   │       │   ├── nest3.err
│   │       │   ├── nest3.idl
│   │       │   ├── nest4.err
│   │       │   ├── nest4.idl
│   │       │   ├── nest5.err
│   │       │   ├── nest5.idl
│   │       │   ├── nest6.err
│   │       │   ├── nest6.idl
│   │       │   ├── recurse1.err
│   │       │   ├── recurse1.idl
│   │       │   ├── recurse2.err
│   │       │   ├── recurse2.idl
│   │       │   ├── recurse3.err
│   │       │   ├── recurse3.idl
│   │       │   ├── recurse4.err
│   │       │   ├── recurse4.idl
│   │       │   ├── repid1.err
│   │       │   ├── repid1.idl
│   │       │   ├── repid2.err
│   │       │   ├── repid2.idl
│   │       │   ├── repid3.err
│   │       │   ├── repid3.idl
│   │       │   ├── repid4.err
│   │       │   ├── repid4.idl
│   │       │   ├── runtest
│   │       │   ├── scope1.err
│   │       │   ├── scope1.idl
│   │       │   ├── scope2.err
│   │       │   ├── scope2.idl
│   │       │   ├── scope3.err
│   │       │   ├── scope3.idl
│   │       │   ├── scope4.err
│   │       │   ├── scope4.idl
│   │       │   ├── scope5.err
│   │       │   ├── scope5.idl
│   │       │   ├── scope6.err
│   │       │   ├── scope6.idl
│   │       │   ├── scope7.err
│   │       │   ├── scope7.idl
│   │       │   ├── search1.err
│   │       │   ├── search1.idl
│   │       │   ├── search2.err
│   │       │   ├── search2.idl
│   │       │   ├── search3.err
│   │       │   ├── search3.idl
│   │       │   ├── search4.err
│   │       │   ├── search4.idl
│   │       │   ├── typecode1.err
│   │       │   ├── typecode1.idl
│   │       │   ├── typecode2.err
│   │       │   ├── typecode2.idl
│   │       │   ├── valuetype1.err
│   │       │   ├── valuetype1.idl
│   │       │   ├── valuetype2.err
│   │       │   ├── valuetype2.idl
│   │       │   ├── valuetype3.err
│   │       │   ├── valuetype3.idl
│   │       │   ├── valuetype4.err
│   │       │   ├── valuetype4.idl
│   │       │   ├── valuetype5.err
│   │       │   └── valuetype5.idl
│   │       ├── include
│   │       │   └── TestMacro.h
│   │       ├── ins
│   │       │   ├── Client.cpp
│   │       │   ├── Makefile.in
│   │       │   ├── Makefile.mak
│   │       │   ├── Server.cpp
│   │       │   ├── URLTest.idl
│   │       │   ├── URLTest_impl.cpp
│   │       │   ├── URLTest_impl.h
│   │       │   └── runtest
│   │       ├── local
│   │       │   ├── Client.cpp
│   │       │   ├── Makefile.in
│   │       │   ├── Makefile.mak
│   │       │   ├── Server.cpp
│   │       │   ├── Test.idl
│   │       │   ├── Test_impl.cpp
│   │       │   ├── Test_impl.h
│   │       │   └── runtest
│   │       ├── main
│   │       │   ├── Client.cpp
│   │       │   ├── ClientMain.cpp
│   │       │   ├── CollocatedMain.cpp
│   │       │   ├── Makefile.in
│   │       │   ├── Makefile.mak
│   │       │   ├── ReactorInit.cpp
│   │       │   ├── Server.cpp
│   │       │   ├── ServerMain.cpp
│   │       │   ├── TestIntf.idl
│   │       │   ├── TestIntfBasic.idl
│   │       │   ├── TestIntfBasicDSI_impl.cpp
│   │       │   ├── TestIntfBasicDSI_impl.h
│   │       │   ├── TestIntfBasic_impl.cpp
│   │       │   ├── TestIntfBasic_impl.h
│   │       │   ├── TestIntfContext.idl
│   │       │   ├── TestIntfContextDSI_impl.cpp
│   │       │   ├── TestIntfContextDSI_impl.h
│   │       │   ├── TestIntfContext_impl.cpp
│   │       │   ├── TestIntfContext_impl.h
│   │       │   ├── TestIntfExceptions.idl
│   │       │   ├── TestIntfExceptionsDSI_impl.cpp
│   │       │   ├── TestIntfExceptionsDSI_impl.h
│   │       │   ├── TestIntfExceptionsExt_2_0.idl
│   │       │   ├── TestIntfExceptionsExt_2_0DSI_impl.cpp
│   │       │   ├── TestIntfExceptionsExt_2_0DSI_impl.h
│   │       │   ├── TestIntfExceptionsExt_2_0_impl.cpp
│   │       │   ├── TestIntfExceptionsExt_2_0_impl.h
│   │       │   ├── TestIntfExceptionsExt_2_3.idl
│   │       │   ├── TestIntfExceptionsExt_2_3DSI_impl.cpp
│   │       │   ├── TestIntfExceptionsExt_2_3DSI_impl.h
│   │       │   ├── TestIntfExceptionsExt_2_3_impl.cpp
│   │       │   ├── TestIntfExceptionsExt_2_3_impl.h
│   │       │   ├── TestIntfExceptions_impl.cpp
│   │       │   ├── TestIntfExceptions_impl.h
│   │       │   ├── TestIntfFixed.idl
│   │       │   ├── TestIntfFixedDSI_impl.cpp
│   │       │   ├── TestIntfFixedDSI_impl.h
│   │       │   ├── TestIntfFixed_impl.cpp
│   │       │   ├── TestIntfFixed_impl.h
│   │       │   ├── TestIntfLongDouble.idl
│   │       │   ├── TestIntfLongDoubleDSI_impl.cpp
│   │       │   ├── TestIntfLongDoubleDSI_impl.h
│   │       │   ├── TestIntfLongDouble_impl.cpp
│   │       │   ├── TestIntfLongDouble_impl.h
│   │       │   ├── TestIntfLongLong.idl
│   │       │   ├── TestIntfLongLongDSI_impl.cpp
│   │       │   ├── TestIntfLongLongDSI_impl.h
│   │       │   ├── TestIntfLongLong_impl.cpp
│   │       │   ├── TestIntfLongLong_impl.h
│   │       │   ├── TestIntfStubTimeout.idl
│   │       │   ├── TestIntfStubTimeoutDSI_impl.cpp
│   │       │   ├── TestIntfStubTimeoutDSI_impl.h
│   │       │   ├── TestIntfStubTimeout_impl.cpp
│   │       │   ├── TestIntfStubTimeout_impl.h
│   │       │   ├── TestIntfWChar.idl
│   │       │   ├── TestIntfWCharDSI_impl.cpp
│   │       │   ├── TestIntfWCharDSI_impl.h
│   │       │   ├── TestIntfWChar_impl.cpp
│   │       │   ├── TestIntfWChar_impl.h
│   │       │   ├── TestIntf_impl.cpp
│   │       │   ├── TestIntf_impl.h
│   │       │   ├── TestObject.cpp
│   │       │   ├── TestObject.h
│   │       │   ├── TestObjectBasic.cpp
│   │       │   ├── TestObjectBasic.h
│   │       │   ├── TestObjectContext.cpp
│   │       │   ├── TestObjectContext.h
│   │       │   ├── TestObjectExceptions.cpp
│   │       │   ├── TestObjectExceptions.h
│   │       │   ├── TestObjectExceptionsExt_2_0.cpp
│   │       │   ├── TestObjectExceptionsExt_2_0.h
│   │       │   ├── TestObjectExceptionsExt_2_3.cpp
│   │       │   ├── TestObjectExceptionsExt_2_3.h
│   │       │   ├── TestObjectFixed.cpp
│   │       │   ├── TestObjectFixed.h
│   │       │   ├── TestObjectLongDouble.cpp
│   │       │   ├── TestObjectLongDouble.h
│   │       │   ├── TestObjectLongLong.cpp
│   │       │   ├── TestObjectLongLong.h
│   │       │   ├── TestObjectStubTimeout.cpp
│   │       │   ├── TestObjectStubTimeout.h
│   │       │   ├── TestObjectWChar.cpp
│   │       │   ├── TestObjectWChar.h
│   │       │   ├── TestPolicyIntf.cpp
│   │       │   └── runtest
│   │       ├── misc
│   │       │   └── utOCIUtils.cpp
│   │       ├── multi
│   │       │   ├── Client.cpp
│   │       │   ├── Makefile.in
│   │       │   ├── Makefile.mak
│   │       │   ├── Multi.idl
│   │       │   ├── Multi_impl.cpp
│   │       │   ├── Multi_impl.h
│   │       │   ├── Server.cpp
│   │       │   └── runtest
│   │       ├── obv
│   │       │   ├── Client.cpp
│   │       │   ├── ClientMain.cpp
│   │       │   ├── Factories.cpp
│   │       │   ├── Factories.h
│   │       │   ├── Makefile.in
│   │       │   ├── Makefile.mak
│   │       │   ├── Server.cpp
│   │       │   ├── ServerMain.cpp
│   │       │   ├── TestAbstractSub_impl.cpp
│   │       │   ├── TestAbstractSub_impl.h
│   │       │   ├── TestCustom_impl.cpp
│   │       │   ├── TestCustom_impl.h
│   │       │   ├── TestNode_impl.cpp
│   │       │   ├── TestNode_impl.h
│   │       │   ├── TestOBV.idl
│   │       │   ├── TestOBVColo_impl.cpp
│   │       │   ├── TestOBVColo_impl.h
│   │       │   ├── TestOBV_impl.cpp
│   │       │   ├── TestOBV_impl.h
│   │       │   ├── TestTrunc_impl.cpp
│   │       │   ├── TestTrunc_impl.h
│   │       │   ├── TestValueAI_impl.cpp
│   │       │   ├── TestValueAI_impl.h
│   │       │   ├── TestValueInterface_impl.cpp
│   │       │   ├── TestValueInterface_impl.h
│   │       │   ├── TestValue_impl.cpp
│   │       │   ├── TestValue_impl.h
│   │       │   └── runtest
│   │       ├── orb_policies
│   │       │   ├── Client.cpp
│   │       │   ├── Collocated.cpp
│   │       │   ├── Makefile.in
│   │       │   ├── Makefile.mak
│   │       │   └── Server.cpp
│   │       ├── pi
│   │       │   ├── Client.cpp
│   │       │   ├── ClientCommon.cpp
│   │       │   ├── ClientCommon.h
│   │       │   ├── ClientMain.cpp
│   │       │   ├── CollocatedMain.cpp
│   │       │   ├── Makefile.in
│   │       │   ├── Makefile.mak
│   │       │   ├── Server.cpp
│   │       │   ├── ServerCommon.cpp
│   │       │   ├── ServerCommon.h
│   │       │   ├── ServerMain.cpp
│   │       │   ├── TestCalls.cpp
│   │       │   ├── TestCodec.cpp
│   │       │   ├── TestDSI_impl.cpp
│   │       │   ├── TestDSI_impl.h
│   │       │   ├── TestInterface.idl
│   │       │   ├── TestInterfaceDSI_impl.cpp
│   │       │   ├── TestInterfaceDSI_impl.h
│   │       │   ├── TestInterface_impl.cpp
│   │       │   ├── TestInterface_impl.h
│   │       │   ├── TestPolicy.idl
│   │       │   ├── TestTranslation.cpp
│   │       │   └── runtest
│   │       ├── poa
│   │       │   ├── Makefile.in
│   │       │   ├── Makefile.mak
│   │       │   ├── POAManagerProxy.idl
│   │       │   ├── TODO
│   │       │   ├── Test.idl
│   │       │   ├── TestActivate.cpp
│   │       │   ├── TestAdapterActivatorServer.cpp
│   │       │   ├── TestClient.cpp
│   │       │   ├── TestCollocated.cpp
│   │       │   ├── TestCreate.cpp
│   │       │   ├── TestDSIRef_impl.cpp
│   │       │   ├── TestDSIRef_impl.h
│   │       │   ├── TestDSI_impl.cpp
│   │       │   ├── TestDSI_impl.h
│   │       │   ├── TestDeactivate.cpp
│   │       │   ├── TestDefaultServantServer.cpp
│   │       │   ├── TestDestroy.cpp
│   │       │   ├── TestDispatchStrategyClient.cpp
│   │       │   ├── TestDispatchStrategyServer.cpp
│   │       │   ├── TestFind.cpp
│   │       │   ├── TestLocationForwardActivator.idl
│   │       │   ├── TestLocationForwardActivator_impl.cpp
│   │       │   ├── TestLocationForwardActivator_impl.h
│   │       │   ├── TestLocationForwardClient.cpp
│   │       │   ├── TestLocationForwardServer.cpp
│   │       │   ├── TestLocationForward_impl.cpp
│   │       │   ├── TestLocationForward_impl.h
│   │       │   ├── TestMisc.cpp
│   │       │   ├── TestMultipleOrbsClient.cpp
│   │       │   ├── TestMultipleOrbsServer.cpp
│   │       │   ├── TestMultipleOrbsThreadedClient.cpp
│   │       │   ├── TestMultipleOrbsThreadedServer.cpp
│   │       │   ├── TestPOAManagerClient.cpp
│   │       │   ├── TestPOAManagerCommon.cpp
│   │       │   ├── TestPOAManagerFactory.cpp
│   │       │   ├── TestPOAManagerServer.cpp
│   │       │   ├── TestRefCount.cpp
│   │       │   ├── TestRefCountServer.cpp
│   │       │   ├── TestRef_impl.cpp
│   │       │   ├── TestRef_impl.h
│   │       │   ├── TestServantActivatorServer.cpp
│   │       │   ├── TestServantLocatorServer.cpp
│   │       │   ├── TestServer_impl.cpp
│   │       │   ├── TestServer_impl.h
│   │       │   ├── TestUtil.cpp
│   │       │   ├── TestUtil.h
│   │       │   ├── Test_impl.cpp
│   │       │   ├── Test_impl.h
│   │       │   └── runtest
│   │       ├── refcount
│   │       │   ├── Client.cpp
│   │       │   ├── Makefile.in
│   │       │   ├── Makefile.mak
│   │       │   └── run
│   │       ├── retry
│   │       │   ├── Client.cpp
│   │       │   ├── Makefile.in
│   │       │   ├── Makefile.mak
│   │       │   ├── Server.cpp
│   │       │   ├── Test.idl
│   │       │   ├── Test_impl.cpp
│   │       │   ├── Test_impl.h
│   │       │   └── runtest
│   │       ├── stress
│   │       │   ├── Echo.idl
│   │       │   ├── EchoClient.cpp
│   │       │   ├── EchoServer.cpp
│   │       │   ├── Echo_impl.cpp
│   │       │   ├── Echo_impl.h
│   │       │   ├── Makefile.in
│   │       │   ├── Makefile.mak
│   │       │   └── runtest
│   │       └── types
│   │           ├── Constants.idl
│   │           ├── DynAnyTypes.idl
│   │           ├── Makefile.in
│   │           ├── Makefile.mak
│   │           ├── TestAny.cpp
│   │           ├── TestConst.cpp
│   │           ├── TestDynAny.cpp
│   │           ├── TestFixed.cpp
│   │           ├── TestSequence.cpp
│   │           ├── TestTypeCode.cpp
│   │           ├── TestUnion.cpp
│   │           ├── Types.idl
│   │           └── runtest
│   ├── property
│   │   ├── CHANGES
│   │   ├── Makefile.in
│   │   ├── Makefile.mak
│   │   ├── README
│   │   ├── config
│   │   │   ├── Make.rules.in
│   │   │   ├── Make.rules.mak
│   │   │   └── testutil.sh
│   │   ├── configure
│   │   ├── configure.in
│   │   ├── idl
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   └── OB
│   │   │       ├── CosProperty.idl
│   │   │       ├── Makefile.in
│   │   │       └── Makefile.mak
│   │   ├── include
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   └── OB
│   │   │       ├── Makefile.in
│   │   │       └── Makefile.mak
│   │   ├── man
│   │   │   ├── Makefile.in
│   │   │   └── man1
│   │   │       ├── Makefile.in
│   │   │       └── propserv.1
│   │   ├── runtest
│   │   ├── src
│   │   │   ├── Config.h.in
│   │   │   ├── CosProperty_impl.cpp
│   │   │   ├── CosProperty_impl.h
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   └── Server.cpp
│   │   └── test
│   │       ├── Client.cpp
│   │       ├── Makefile.in
│   │       ├── Makefile.mak
│   │       ├── TestConstrained.cpp
│   │       ├── TestInitial.cpp
│   │       └── TestUnconstrained.cpp
│   ├── runconfig
│   ├── runconfig.bat
│   ├── time
│   │   ├── Makefile.in
│   │   ├── Makefile.mak
│   │   ├── README
│   │   ├── config
│   │   │   ├── Make.rules.in
│   │   │   └── Make.rules.mak
│   │   ├── configure
│   │   ├── configure.in
│   │   ├── demo
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   ├── README
│   │   │   └── StopWatch.cpp
│   │   ├── idl
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   └── OB
│   │   │       ├── CosTime.idl
│   │   │       ├── Makefile.in
│   │   │       └── Makefile.mak
│   │   ├── include
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   └── OB
│   │   │       ├── Makefile.in
│   │   │       ├── Makefile.mak
│   │   │       └── TimeService.h
│   │   ├── runtest
│   │   ├── src
│   │   │   ├── Config.h.in
│   │   │   ├── CosTime_impl.cpp
│   │   │   ├── CosTime_impl.h
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   └── TimeService.cpp
│   │   └── test
│   │       ├── Client.cpp
│   │       ├── Makefile.in
│   │       ├── Makefile.mak
│   │       ├── TestMacro.h
│   │       ├── TestTIO.cpp
│   │       ├── TestTimeHelper.cpp
│   │       └── TestUTO.cpp
│   ├── udp
│   │   ├── CHANGES
│   │   ├── Makefile.in
│   │   ├── Makefile.mak
│   │   ├── README
│   │   ├── README.AIX
│   │   ├── config
│   │   │   ├── Make.rules.in
│   │   │   └── Make.rules.mak
│   │   ├── configure
│   │   ├── configure.in
│   │   ├── demo
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   ├── filetransfer
│   │   │   │   ├── FileTransfer.idl
│   │   │   │   ├── FileTransfer_impl.cpp
│   │   │   │   ├── FileTransfer_impl.h
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── Makefile.mak
│   │   │   │   ├── README
│   │   │   │   ├── Receiver.cpp
│   │   │   │   ├── Sender.cpp
│   │   │   │   ├── receiver.cfg
│   │   │   │   ├── receiver_mcast.cfg
│   │   │   │   ├── run
│   │   │   │   └── sender.cfg
│   │   │   └── hello
│   │   │       ├── Client.cpp
│   │   │       ├── Hello.idl
│   │   │       ├── Hello_impl.cpp
│   │   │       ├── Hello_impl.h
│   │   │       ├── Makefile.in
│   │   │       ├── Makefile.mak
│   │   │       ├── README
│   │   │       ├── Server.cpp
│   │   │       ├── client.cfg
│   │   │       ├── run
│   │   │       ├── server.cfg
│   │   │       └── server_mcast.cfg
│   │   ├── idl
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   └── OB
│   │   │       ├── Makefile.in
│   │   │       ├── Makefile.mak
│   │   │       ├── OCI_UDP.idl
│   │   │       └── UDPIOP.idl
│   │   ├── include
│   │   │   ├── Makefile.in
│   │   │   ├── Makefile.mak
│   │   │   └── OB
│   │   │       ├── Makefile.in
│   │   │       ├── Makefile.mak
│   │   │       └── OCI_UDP_init.h
│   │   └── src
│   │       ├── Config.h.in
│   │       ├── Makefile.in
│   │       ├── Makefile.mak
│   │       ├── OCI_UDP_impl.cpp
│   │       ├── OCI_UDP_impl.h
│   │       ├── OCI_UDP_init.cpp
│   │       ├── PacketCollector.cpp
│   │       ├── PacketCollector.h
│   │       ├── ServerPacketHandler.cpp
│   │       └── ServerPacketHandler.h
│   └── watson
│       ├── CHANGES
│       ├── Makefile.in
│       ├── Makefile.mak
│       ├── README
│       ├── config
│       │   ├── Make.rules.in
│       │   └── Make.rules.mak
│       ├── configure
│       ├── configure.in
│       ├── demo
│       │   ├── Makefile.in
│       │   ├── Makefile.mak
│       │   ├── hello
│       │   │   ├── Client.cpp
│       │   │   ├── Hello.idl
│       │   │   ├── Hello_impl.cpp
│       │   │   ├── Hello_impl.h
│       │   │   ├── Makefile.in
│       │   │   ├── Makefile.mak
│       │   │   ├── README
│       │   │   ├── Server.cpp
│       │   │   ├── run
│       │   │   └── watson.cfg
│       │   └── nested
│       │       ├── Makefile.in
│       │       ├── Makefile.mak
│       │       ├── Peer.idl
│       │       ├── Peer1.cpp
│       │       ├── Peer2.cpp
│       │       ├── Peer_impl.cpp
│       │       ├── Peer_impl.h
│       │       ├── README
│       │       ├── run
│       │       └── watson.cfg
│       ├── idl
│       │   ├── Makefile.in
│       │   ├── Makefile.mak
│       │   └── OB
│       │       ├── Callstack.idl
│       │       ├── Makefile.in
│       │       └── Makefile.mak
│       ├── include
│       │   ├── Makefile.in
│       │   ├── Makefile.mak
│       │   └── OB
│       │       ├── Makefile.in
│       │       ├── Makefile.mak
│       │       └── watson.h
│       └── src
│           ├── CRILogger_impl.cpp
│           ├── CRILogger_impl.h
│           ├── Config.h.in
│           ├── CorbaOut.cpp
│           ├── CorbaOut.h
│           ├── Makefile.in
│           ├── Makefile.mak
│           ├── RILogger.cpp
│           ├── RILogger.h
│           ├── RIORBInitializer_impl.cpp
│           ├── RIORBInitializer_impl.h
│           ├── SRILogger_impl.cpp
│           ├── SRILogger_impl.h
│           └── watson.cpp
└── Orbacus4.3.4[一个CORBA C 开源库]_OB-4.3.4.zip

173 directories, 2343 files


标签:

实例下载地址

Orbacus4.3.4[一个CORBA C++ 开源库]

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警