在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例C/C++网络编程 → omni CORBA 中间件

omni CORBA 中间件

C/C++网络编程

下载此实例
  • 开发语言:C/C++
  • 实例大小:3.54M
  • 下载次数:15
  • 浏览次数:279
  • 发布时间:2020-10-17
  • 实例类别:C/C++网络编程
  • 发 布 人:cheng4312
  • 文件格式:.rar
  • 所需积分:2
 相关标签: corba

实例介绍

【实例简介】通过中间件屏蔽底层通信细节
【实例截图】from clipboard

【核心代码】

omniORB-4.2.3

├── COPYING
├── COPYING.LIB
├── CREDITS
├── GNUmakefile.in
├── README.FIRST.txt
├── README.unix.txt
├── README.win32.txt
├── ReleaseChecklist.txt
├── ReleaseNotes.txt
├── THIS_IS_OMNIORB_4_2_3
├── acinclude.m4
├── aclocal.m4
├── bin
│   ├── scripts
│   │   ├── config.guess
│   │   ├── config.sub
│   │   ├── distdate.py
│   │   ├── install-sh
│   │   ├── make16bitcs.py
│   │   ├── make8bitcs.py
│   │   ├── makedeffile.py
│   │   ├── omkdirhier
│   │   └── process_invocations.py
│   └── x86_win32
│       ├── clwrapper.exe
│       ├── libwrapper.exe
│       ├── linkwrapper.exe
│       ├── oidlwrapper.exe
│       └── omkdepend.exe
├── config
│   └── config.mk
├── configure
├── configure.ac
├── contrib
│   ├── GNUmakefile.in
│   ├── README
│   ├── RPMs
│   │   ├── omniORB.spec
│   │   └── omniORB_new.spec
│   ├── Voyager
│   │   ├── README-Voyager.txt
│   │   └── cs-voyager.cc
│   └── pkgconfig
│       ├── GNUmakefile.in
│       ├── omniCOS4.pc.in
│       ├── omniCOSDynamic4.pc.in
│       ├── omniConnectionMgmt4.pc.in
│       ├── omniDynamic4.pc.in
│       ├── omniORB4.pc.in
│       ├── omniZIOP4.pc.in
│       ├── omniZIOPDynamic4.pc.in
│       └── omnithread3.pc.in
├── doc
│   ├── omniNames.html
│   ├── omniNames.pdf
│   ├── omniORB
│   │   ├── contents_motif.gif
│   │   ├── index.html
│   │   ├── next_motif.gif
│   │   ├── omniORB.css
│   │   ├── omniORB.html
│   │   ├── omniORB001.html
│   │   ├── omniORB002.html
│   │   ├── omniORB003.html
│   │   ├── omniORB004.html
│   │   ├── omniORB005.html
│   │   ├── omniORB006.html
│   │   ├── omniORB007.html
│   │   ├── omniORB008.html
│   │   ├── omniORB009.html
│   │   ├── omniORB010.html
│   │   ├── omniORB011.html
│   │   ├── omniORB012.html
│   │   ├── omniORB013.html
│   │   ├── omniORB014.html
│   │   ├── omniORB015.html
│   │   ├── omniORB016.html
│   │   └── previous_motif.gif
│   ├── omniORB.pdf
│   ├── omniidl.html
│   ├── omniidl.pdf
│   ├── omnithread.html
│   ├── omnithread.pdf
│   ├── tex
│   │   ├── omniNames.tex
│   │   ├── omniORB.bib
│   │   ├── omniORB.tex
│   │   ├── omniURLDefs.hva
│   │   ├── omniURLDefs.sty
│   │   ├── omniidl.tex
│   │   ├── omnithread.tex
│   │   └── utilities.tex
│   ├── utilities.html
│   └── utilities.pdf
├── etc
│   ├── README
│   ├── init.d
│   │   ├── omniNames.SuSE.in
│   │   └── omniNames.in
│   ├── macos.zip
│   ├── openvms.zip
│   ├── rtems.zip
│   └── vxworks.zip
├── idl
│   ├── COS
│   │   ├── CosCollection.idl
│   │   ├── CosCompoundLifeCycle.idl
│   │   ├── CosConcurrencyControl.idl
│   │   ├── CosContainment.idl
│   │   ├── CosEventChannelAdmin.idl
│   │   ├── CosEventComm.idl
│   │   ├── CosExternalization.idl
│   │   ├── CosExternalizationContainment.idl
│   │   ├── CosExternalizationReference.idl
│   │   ├── CosGraphs.idl
│   │   ├── CosLicensingManager.idl
│   │   ├── CosLifeCycle.idl
│   │   ├── CosLifeCycleContainment.idl
│   │   ├── CosLifeCycleReference.idl
│   │   ├── CosNaming.idl
│   │   ├── CosNotification.idl
│   │   ├── CosNotifyChannelAdmin.idl
│   │   ├── CosNotifyComm.idl
│   │   ├── CosNotifyFilter.idl
│   │   ├── CosObjectIdentity.idl
│   │   ├── CosPersistenceDDO.idl
│   │   ├── CosPersistenceDS_CLI.idl
│   │   ├── CosPersistencePDS.idl
│   │   ├── CosPersistencePDS_DA.idl
│   │   ├── CosPersistencePID.idl
│   │   ├── CosPersistencePO.idl
│   │   ├── CosPersistencePOM.idl
│   │   ├── CosPropertyService.idl
│   │   ├── CosQuery.idl
│   │   ├── CosQueryCollection.idl
│   │   ├── CosReference.idl
│   │   ├── CosRelationships.idl
│   │   ├── CosStream.idl
│   │   ├── CosTSPortability.idl
│   │   ├── CosTime.idl
│   │   ├── CosTimerEvent.idl
│   │   ├── CosTrading.idl
│   │   ├── CosTradingDynamic.idl
│   │   ├── CosTradingRepos.idl
│   │   ├── CosTransactions.idl
│   │   ├── CosTypedEventChannelAdmin.idl
│   │   ├── CosTypedEventComm.idl
│   │   ├── CosTypedNotifyChannelAdmin.idl
│   │   ├── CosTypedNotifyComm.idl
│   │   ├── DCE_CIOPSecurity.idl
│   │   ├── GNUmakefile.in
│   │   ├── LifeCycleService.idl
│   │   ├── Lname-library.idl
│   │   ├── NRService.idl
│   │   ├── RDITestTypes.idl
│   │   ├── SECIOP.idl
│   │   ├── SSLIOP.idl
│   │   ├── Security.idl
│   │   ├── SecurityAdmin.idl
│   │   ├── SecurityLevel1.idl
│   │   ├── SecurityLevel2.idl
│   │   ├── SecurityReplaceable.idl
│   │   └── TimeBase.idl
│   ├── GNUmakefile.in
│   ├── Naming.idl
│   ├── anyExample.idl
│   ├── bootstrap.idl
│   ├── boxes.idl
│   ├── compression.idl
│   ├── corbaidl.idl
│   ├── echo.idl
│   ├── ir.idl
│   ├── messaging.idl
│   ├── messaging_policy.idl
│   ├── omniConnectionData.idl
│   ├── omniTypedefs.idl
│   ├── orb.idl
│   ├── poa.idl
│   ├── poa_enums.idl
│   ├── poa_include.idl
│   ├── pollable.idl
│   └── ziop.idl
├── include
│   ├── GNUmakefile.in
│   ├── omniORB4
│   │   ├── BiDirPolicy.h
│   │   ├── CORBA.h
│   │   ├── CORBA_AbstractBase.h
│   │   ├── CORBA_Any.h
│   │   ├── CORBA_Any_vartypes.h
│   │   ├── CORBA_BOA.h
│   │   ├── CORBA_Context.h
│   │   ├── CORBA_Current.h
│   │   ├── CORBA_DomainManager.h
│   │   ├── CORBA_Environment.h
│   │   ├── CORBA_Exception.h
│   │   ├── CORBA_ExceptionList.h
│   │   ├── CORBA_Fixed.h
│   │   ├── CORBA_LocalObject.h
│   │   ├── CORBA_LocalObject_vartypes.h
│   │   ├── CORBA_NamedValue.h
│   │   ├── CORBA_ORB.h
│   │   ├── CORBA_Object.h
│   │   ├── CORBA_Object_vartypes.h
│   │   ├── CORBA_Policy.h
│   │   ├── CORBA_Principal.h
│   │   ├── CORBA_Request.h
│   │   ├── CORBA_ServerRequest.h
│   │   ├── CORBA_String.h
│   │   ├── CORBA_TypeCode.h
│   │   ├── CORBA_TypeCode_member.h
│   │   ├── CORBA_UnknownUserException.h
│   │   ├── CORBA_ValueBase.h
│   │   ├── CORBA_ValueBase_vartypes.h
│   │   ├── CORBA_basetypes.h
│   │   ├── CORBA_primitive_types.h
│   │   ├── CORBA_static_fns.h
│   │   ├── CORBA_sysdep.h
│   │   ├── CORBA_sysdep_auto.h
│   │   ├── CORBA_sysdep_trad.h
│   │   ├── CORBA_vartypes.h
│   │   ├── GIOP.h
│   │   ├── GNUmakefile.in
│   │   ├── IIOP.h
│   │   ├── IOP.h
│   │   ├── IOP_C.h
│   │   ├── IOP_S.h
│   │   ├── acconfig.h.in
│   │   ├── ami.h
│   │   ├── anyStream.h
│   │   ├── boa.h
│   │   ├── callDescriptor.h
│   │   ├── callHandle.h
│   │   ├── cdrStream.h
│   │   ├── codeSets.h
│   │   ├── corba_operators.h
│   │   ├── dynAny.h
│   │   ├── finalCleanup.h
│   │   ├── fixed.h
│   │   ├── giopEndpoint.h
│   │   ├── internal
│   │   │   ├── GIOP_C.h
│   │   │   ├── GIOP_S.h
│   │   │   ├── GNUmakefile.in
│   │   │   ├── SocketCollection.h
│   │   │   ├── anonObject.h
│   │   │   ├── codeSetUtil.h
│   │   │   ├── context.h
│   │   │   ├── corbaBoa.h
│   │   │   ├── corbaOrb.h
│   │   │   ├── dynAnyImpl.h
│   │   │   ├── dynamicImplementation.h
│   │   │   ├── dynamicLib.h
│   │   │   ├── excepthandler.h
│   │   │   ├── exceptiondefs.h
│   │   │   ├── giopBiDir.h
│   │   │   ├── giopMonitor.h
│   │   │   ├── giopRendezvouser.h
│   │   │   ├── giopRope.h
│   │   │   ├── giopServer.h
│   │   │   ├── giopStrand.h
│   │   │   ├── giopStrandFlags.h
│   │   │   ├── giopStream.h
│   │   │   ├── giopStreamImpl.h
│   │   │   ├── giopWorker.h
│   │   │   ├── inProcessIdentity.h
│   │   │   ├── initRefs.h
│   │   │   ├── initialiser.h
│   │   │   ├── interceptors.h
│   │   │   ├── invoker.h
│   │   │   ├── libcWrapper.h
│   │   │   ├── localIdentity.h
│   │   │   ├── objectAdapter.h
│   │   │   ├── objectStub.h
│   │   │   ├── objectTable.h
│   │   │   ├── omniCurrent.h
│   │   │   ├── omniIdentity.h
│   │   │   ├── orbOptions.h
│   │   │   ├── orbParameters.h
│   │   │   ├── poacurrentimpl.h
│   │   │   ├── poaimpl.h
│   │   │   ├── poamanager.h
│   │   │   ├── pseudo.h
│   │   │   ├── remoteIdentity.h
│   │   │   ├── request.h
│   │   │   ├── rmutex.h
│   │   │   ├── shutdownIdentity.h
│   │   │   ├── tcParser.h
│   │   │   ├── tcpSocket.h
│   │   │   ├── transportRules.h
│   │   │   ├── typecode.h
│   │   │   ├── unknownValue.h
│   │   │   └── valueTrackerImpl.h
│   │   ├── linkHacks.h
│   │   ├── local_config.h
│   │   ├── minorCode.h
│   │   ├── objTracker.h
│   │   ├── omniAsyncInvoker.h
│   │   ├── omniConnectionMgmt.h
│   │   ├── omniIOR.h
│   │   ├── omniInterceptors.h
│   │   ├── omniInternal.h
│   │   ├── omniORB.h
│   │   ├── omniORBcompat.h
│   │   ├── omniObjKey.h
│   │   ├── omniObjRef.h
│   │   ├── omniPolicy.h
│   │   ├── omniServant.h
│   │   ├── omniServer.h
│   │   ├── omniTransport.h
│   │   ├── omniURI.h
│   │   ├── omniZIOP.h
│   │   ├── omniutilities.h
│   │   ├── optionalFeatures.h
│   │   ├── poa.h
│   │   ├── poa_defs.h
│   │   ├── poa_poa.h
│   │   ├── proxyFactory.h
│   │   ├── seqTemplatedecls.h
│   │   ├── seqTemplatedefns.h
│   │   ├── sslContext.h
│   │   ├── streamOperators.h
│   │   ├── stringtypes.h
│   │   ├── templatedecls.h
│   │   ├── templatedefns.h
│   │   ├── tracedthread.h
│   │   ├── userexception.h
│   │   ├── valueFactoryManager.h
│   │   ├── valueTemplatedecls.h
│   │   ├── valueTemplatedefns.h
│   │   ├── valueType.h
│   │   ├── wstringtypes.h
│   │   └── ziopStubs.h
│   ├── omniVms
│   │   ├── unlink.hxx
│   │   └── utsname.hxx
│   ├── omniconfig.h
│   ├── omniconfig.h.in
│   ├── omnithread
│   │   ├── GNUmakefile.in
│   │   ├── VxThread.h
│   │   ├── atomic.h
│   │   ├── nt.h
│   │   ├── posix.h
│   │   └── pthread_nt.h
│   └── omnithread.h
├── man
│   ├── man1
│   │   ├── catior.1
│   │   ├── convertior.1
│   │   ├── genior.1
│   │   ├── nameclt.1
│   │   ├── omnicpp.1
│   │   └── omniidl.1
│   └── man8
│       ├── omniMapper.8
│       └── omniNames.8
├── mk
│   ├── afterauto.mk.in
│   ├── afterdir.mk
│   ├── beforeauto.mk.in
│   ├── beforedir.mk
│   ├── cos.mk
│   ├── java.mk
│   ├── linux.mk
│   ├── mingw.mk
│   ├── mklib.mk
│   ├── platforms
│   │   ├── alpha_linux_2.0.mk
│   │   ├── alpha_nt_4.0.mk
│   │   ├── alpha_osf1_3.2.mk
│   │   ├── alpha_osf1_4.0.mk
│   │   ├── alpha_osf1_5.0.mk
│   │   ├── arm_linux_mvl_3.1.mk
│   │   ├── arm_vxWorks_5.4.mk
│   │   ├── hppa_hpux_10.20.mk
│   │   ├── hppa_hpux_11.00.mk
│   │   ├── hppa_hpux_11.23.mk
│   │   ├── i586_linux_2.0.mk
│   │   ├── i586_linux_2.0_glibc.mk
│   │   ├── i586_linux_2.0_glibc2.1.mk
│   │   ├── ia64_hpux_11.23.mk
│   │   ├── m68k_nextstep_3.3.mk
│   │   ├── mips_irix_6.2_n32.mk
│   │   ├── mips_irix_6.4_6.5_common.mk
│   │   ├── mips_irix_6.4_64.mk
│   │   ├── mips_irix_6.4_n32.mk
│   │   ├── mips_irix_6.5_64.mk
│   │   ├── mips_irix_6.5_n32.mk
│   │   ├── mips_sinux_5.43.mk
│   │   ├── pc486_rtems_4.5.0.mk
│   │   ├── powerpc_LynxOS_4.0.mk
│   │   ├── powerpc_aix_4.2.mk
│   │   ├── powerpc_aix_4.2_egcs.mk
│   │   ├── powerpc_aix_4.2_xlc5.mk
│   │   ├── powerpc_aix_4.3_gcc.mk
│   │   ├── powerpc_aix_4.3_xlc5.mk
│   │   ├── powerpc_darwin_1.3.mk
│   │   ├── powerpc_vxWorks_5.3.mk
│   │   ├── rtems.mk
│   │   ├── s390_linux_glibc2.1.mk
│   │   ├── sun4_sosV_5.5.mk
│   │   ├── sun4_sosV_5.6.mk
│   │   ├── sun4_sosV_5.7.mk
│   │   ├── x86_LynxOS_4.0.mk
│   │   ├── x86_ets.mk
│   │   ├── x86_freebsd_3.2.mk
│   │   ├── x86_freebsd_4.0.mk
│   │   ├── x86_nextstep_3.3.mk
│   │   ├── x86_osr5.mk
│   │   ├── x86_sosV_5.5.mk
│   │   ├── x86_vxWorks_5.4.mk
│   │   ├── x86_win32_bcc.mk
│   │   ├── x86_win32_dmc.mk
│   │   ├── x86_win32_mingw.mk
│   │   ├── x86_win32_vs_10.mk
│   │   ├── x86_win32_vs_11.mk
│   │   ├── x86_win32_vs_12.mk
│   │   ├── x86_win32_vs_14.mk
│   │   ├── x86_win32_vs_15.mk
│   │   ├── x86_win32_vs_6.mk
│   │   ├── x86_win32_vs_7.mk
│   │   ├── x86_win32_vs_8.mk
│   │   └── x86_win32_vs_9.mk
│   ├── python.mk
│   ├── rtems.mk
│   ├── unix.mk
│   ├── version.mk
│   ├── vxWorks.mk
│   └── win32.mk
├── patches
│   ├── README
│   ├── dec_CXX_5.6.patch
│   └── mingw_omnipython.patch
├── readmes
│   ├── CHANGES_240
│   ├── CHANGES_250
│   ├── CHANGES_261
│   ├── CHANGES_271
│   ├── CHANGES_280
│   ├── PORTING
│   ├── README.ETSKernel
│   ├── README.SGI
│   ├── README.SunC 5
│   ├── README.dmc
│   ├── README.egcs
│   ├── README.hpux11
│   ├── README.macos
│   ├── README.openvms
│   ├── README.openvms_v6
│   └── README.rtems
├── sample.cfg
├── sample.reg
├── src
│   ├── GNUmakefile
│   ├── GNUmakefile.in
│   ├── appl
│   │   ├── GNUmakefile
│   │   ├── GNUmakefile.in
│   │   ├── dir.mk
│   │   ├── omniMapper
│   │   │   ├── GNUmakefile
│   │   │   ├── GNUmakefile.in
│   │   │   ├── dir.mk
│   │   │   └── omniMapper.cc
│   │   ├── omniNames
│   │   │   ├── BindingIterator_i.h
│   │   │   ├── GNUmakefile
│   │   │   ├── GNUmakefile.in
│   │   │   ├── INSMapper.h
│   │   │   ├── NamingContext_i.cc
│   │   │   ├── NamingContext_i.h
│   │   │   ├── ObjectBinding.h
│   │   │   ├── ReadersWritersLock.h
│   │   │   ├── dir.mk
│   │   │   ├── log.cc
│   │   │   ├── log.h
│   │   │   ├── omniNames.cc
│   │   │   ├── omniNames.h
│   │   │   └── omniNamesWin.cc
│   │   └── utils
│   │       ├── GNUmakefile
│   │       ├── GNUmakefile.in
│   │       ├── catior
│   │       │   ├── GNUmakefile
│   │       │   ├── GNUmakefile.in
│   │       │   ├── catior.cc
│   │       │   └── dir.mk
│   │       ├── convertior
│   │       │   ├── GNUmakefile
│   │       │   ├── GNUmakefile.in
│   │       │   ├── convertior.cc
│   │       │   └── dir.mk
│   │       ├── dir.mk
│   │       ├── genior
│   │       │   ├── GNUmakefile
│   │       │   ├── GNUmakefile.in
│   │       │   ├── dir.mk
│   │       │   └── genior.cc
│   │       └── nameclt
│   │           ├── GNUmakefile
│   │           ├── GNUmakefile.in
│   │           ├── dir.mk
│   │           └── nameclt.cc
│   ├── dir.mk
│   ├── examples
│   │   ├── GNUmakefile
│   │   ├── GNUmakefile.in
│   │   ├── ami
│   │   │   ├── GNUmakefile
│   │   │   ├── GNUmakefile.in
│   │   │   ├── dir.mak
│   │   │   ├── dir.mk
│   │   │   ├── echo_ami.idl
│   │   │   ├── echo_callback.cc
│   │   │   ├── echo_dii_pollable_set.cc
│   │   │   ├── echo_pollable_set.cc
│   │   │   └── echo_poller.cc
│   │   ├── anyExample
│   │   │   ├── GNUmakefile
│   │   │   ├── GNUmakefile.in
│   │   │   ├── anyExample_clt.cc
│   │   │   ├── anyExample_impl.cc
│   │   │   ├── dir.mak
│   │   │   └── dir.mk
│   │   ├── bidir
│   │   │   ├── GNUmakefile
│   │   │   ├── GNUmakefile.in
│   │   │   ├── README
│   │   │   ├── bd_client.cc
│   │   │   ├── bd_server.cc
│   │   │   ├── bd_shutdown.cc
│   │   │   ├── dir.mak
│   │   │   ├── dir.mk
│   │   │   └── echo_callback.idl
│   │   ├── boa
│   │   │   ├── GNUmakefile
│   │   │   ├── GNUmakefile.in
│   │   │   ├── becho.idl
│   │   │   ├── dir.mak
│   │   │   ├── dir.mk
│   │   │   └── eg2_impl.cc
│   │   ├── call_back
│   │   │   ├── GNUmakefile
│   │   │   ├── GNUmakefile.in
│   │   │   ├── README
│   │   │   ├── cb_client.cc
│   │   │   ├── cb_server.cc
│   │   │   ├── cb_shutdown.cc
│   │   │   ├── dir.mak
│   │   │   ├── dir.mk
│   │   │   └── echo_callback.idl
│   │   ├── dii
│   │   │   ├── GNUmakefile
│   │   │   ├── GNUmakefile.in
│   │   │   ├── dir.mak
│   │   │   ├── dir.mk
│   │   │   └── echo_diiclt.cc
│   │   ├── dir.mak
│   │   ├── dir.mk
│   │   ├── dsi
│   │   │   ├── GNUmakefile
│   │   │   ├── GNUmakefile.in
│   │   │   ├── dir.mak
│   │   │   ├── dir.mk
│   │   │   └── echo_dsiimpl.cc
│   │   ├── echo
│   │   │   ├── GNUmakefile
│   │   │   ├── GNUmakefile.in
│   │   │   ├── README
│   │   │   ├── dir.mak
│   │   │   ├── dir.mk
│   │   │   ├── eg1.cc
│   │   │   ├── eg2_clt.cc
│   │   │   ├── eg2_impl.cc
│   │   │   ├── eg3_clt.cc
│   │   │   ├── eg3_impl.cc
│   │   │   └── eg3_tieimpl.cc
│   │   ├── poa
│   │   │   ├── GNUmakefile
│   │   │   ├── GNUmakefile.in
│   │   │   ├── README
│   │   │   ├── dir.mak
│   │   │   ├── dir.mk
│   │   │   ├── implicit_activation
│   │   │   │   ├── GNUmakefile
│   │   │   │   ├── GNUmakefile.in
│   │   │   │   ├── dir.mak
│   │   │   │   ├── dir.mk
│   │   │   │   └── eg1.cc
│   │   │   ├── persistent_objref
│   │   │   │   ├── GNUmakefile
│   │   │   │   ├── GNUmakefile.in
│   │   │   │   ├── dir.mak
│   │   │   │   ├── dir.mk
│   │   │   │   └── eg2_impl.cc
│   │   │   ├── servant_manager
│   │   │   │   ├── GNUmakefile
│   │   │   │   ├── GNUmakefile.in
│   │   │   │   ├── dir.mak
│   │   │   │   ├── dir.mk
│   │   │   │   ├── servant_activator.cc
│   │   │   │   └── servant_locator.cc
│   │   │   ├── shortcut
│   │   │   │   ├── GNUmakefile
│   │   │   │   ├── GNUmakefile.in
│   │   │   │   ├── dir.mak
│   │   │   │   ├── dir.mk
│   │   │   │   ├── shortcut.cc
│   │   │   │   └── shortcut.idl
│   │   │   └── threading
│   │   │       ├── GNUmakefile
│   │   │       ├── GNUmakefile.in
│   │   │       ├── dir.mak
│   │   │       ├── dir.mk
│   │   │       └── mainthread.cc
│   │   ├── ssl_echo
│   │   │   ├── GNUmakefile
│   │   │   ├── GNUmakefile.in
│   │   │   ├── README
│   │   │   ├── client.pem
│   │   │   ├── dir.mak
│   │   │   ├── dir.mk
│   │   │   ├── echo.idl
│   │   │   ├── eg2_clt.cc
│   │   │   ├── eg2_impl.cc
│   │   │   ├── root.pem
│   │   │   └── server.pem
│   │   ├── thread
│   │   │   ├── GNUmakefile
│   │   │   ├── GNUmakefile.in
│   │   │   ├── README
│   │   │   ├── diner.cc
│   │   │   ├── dir.mak
│   │   │   ├── dir.mk
│   │   │   ├── prio.cc
│   │   │   ├── prodcons.cc
│   │   │   └── thrspecdata.cc
│   │   ├── valuetype
│   │   │   ├── GNUmakefile
│   │   │   ├── GNUmakefile.in
│   │   │   ├── dir.mak
│   │   │   ├── dir.mk
│   │   │   └── simple
│   │   │       ├── GNUmakefile
│   │   │       ├── GNUmakefile.in
│   │   │       ├── dir.mak
│   │   │       ├── dir.mk
│   │   │       ├── valimpl.h
│   │   │       ├── value.idl
│   │   │       ├── vclient.cc
│   │   │       ├── vcoloc.cc
│   │   │       └── vserver.cc
│   │   └── ziop
│   │       ├── GNUmakefile
│   │       ├── GNUmakefile.in
│   │       ├── README.txt
│   │       ├── dir.mk
│   │       ├── ziop_clt.cc
│   │       └── ziop_impl.cc
│   ├── lib
│   │   ├── GNUmakefile
│   │   ├── GNUmakefile.in
│   │   ├── dir.mk
│   │   ├── omniORB
│   │   │   ├── GNUmakefile
│   │   │   ├── GNUmakefile.in
│   │   │   ├── codesets
│   │   │   │   ├── GNUmakefile
│   │   │   │   ├── GNUmakefile.in
│   │   │   │   ├── cs-037.cc
│   │   │   │   ├── cs-500.cc
│   │   │   │   ├── cs-8859-10.cc
│   │   │   │   ├── cs-8859-11.cc
│   │   │   │   ├── cs-8859-13.cc
│   │   │   │   ├── cs-8859-14.cc
│   │   │   │   ├── cs-8859-15.cc
│   │   │   │   ├── cs-8859-16.cc
│   │   │   │   ├── cs-8859-2.cc
│   │   │   │   ├── cs-8859-3.cc
│   │   │   │   ├── cs-8859-4.cc
│   │   │   │   ├── cs-8859-5.cc
│   │   │   │   ├── cs-8859-6.cc
│   │   │   │   ├── cs-8859-7.cc
│   │   │   │   ├── cs-8859-8.cc
│   │   │   │   ├── cs-8859-9.cc
│   │   │   │   ├── cs-EDF-4.cc
│   │   │   │   ├── cs-GBK.cc
│   │   │   │   ├── cs-UCS-4.cc
│   │   │   │   ├── cs-cp1250.cc
│   │   │   │   ├── cs-cp1251.cc
│   │   │   │   ├── cs-cp1252.cc
│   │   │   │   ├── cs-cp1253.cc
│   │   │   │   ├── cs-cp1254.cc
│   │   │   │   ├── cs-cp1255.cc
│   │   │   │   ├── cs-cp1256.cc
│   │   │   │   ├── cs-cp1257.cc
│   │   │   │   ├── cs-cp1258.cc
│   │   │   │   ├── dir.mk
│   │   │   │   └── omniCodeSets.cc
│   │   │   ├── connections
│   │   │   │   ├── GNUmakefile
│   │   │   │   ├── GNUmakefile.in
│   │   │   │   ├── README.txt
│   │   │   │   ├── dataStub.cc
│   │   │   │   ├── dir.mk
│   │   │   │   └── omniConnectionMgmt.cc
│   │   │   ├── dir.mk
│   │   │   ├── dynamic
│   │   │   │   ├── GNUmakefile
│   │   │   │   ├── GNUmakefile.in
│   │   │   │   ├── Namingdynstub.cc
│   │   │   │   ├── abstractBase.cc
│   │   │   │   ├── ami.cc
│   │   │   │   ├── any.cc
│   │   │   │   ├── anyStream.cc
│   │   │   │   ├── bootstrapdynstub.cc
│   │   │   │   ├── boxes.cc
│   │   │   │   ├── constants.cc
│   │   │   │   ├── context.cc
│   │   │   │   ├── contextList.cc
│   │   │   │   ├── corbaidldynstub.cc
│   │   │   │   ├── corbaidlstub.cc
│   │   │   │   ├── dir.mk
│   │   │   │   ├── dynAny.cc
│   │   │   │   ├── dynAnyNil.cc
│   │   │   │   ├── dynException.cc
│   │   │   │   ├── dynamicImplementation.cc
│   │   │   │   ├── dynamicLib.cc
│   │   │   │   ├── environment.cc
│   │   │   │   ├── exceptionList.cc
│   │   │   │   ├── ir.cc
│   │   │   │   ├── irdynstub.cc
│   │   │   │   ├── irstub.cc
│   │   │   │   ├── messagingstub.cc
│   │   │   │   ├── namedValue.cc
│   │   │   │   ├── nvList.cc
│   │   │   │   ├── omniTypedefs.cc
│   │   │   │   ├── orbMultiRequest.cc
│   │   │   │   ├── poastub.cc
│   │   │   │   ├── policy.cc
│   │   │   │   ├── pollablestub.cc
│   │   │   │   ├── pseudoBase.cc
│   │   │   │   ├── request.cc
│   │   │   │   ├── serverRequest.cc
│   │   │   │   ├── tcParser.cc
│   │   │   │   ├── typecode.cc
│   │   │   │   ├── unknownUserExn.cc
│   │   │   │   ├── unknownValue.cc
│   │   │   │   ├── valueBase.cc
│   │   │   │   ├── valueFactory.cc
│   │   │   │   ├── valueTracker.cc
│   │   │   │   └── valueType.cc
│   │   │   ├── orbcore
│   │   │   │   ├── GIOP_C.cc
│   │   │   │   ├── GIOP_S.cc
│   │   │   │   ├── GNUmakefile
│   │   │   │   ├── GNUmakefile.in
│   │   │   │   ├── Namingstub.cc
│   │   │   │   ├── SocketCollection.cc
│   │   │   │   ├── anonObject.cc
│   │   │   │   ├── bootstrapstub.cc
│   │   │   │   ├── callDescriptor.cc
│   │   │   │   ├── callHandle.cc
│   │   │   │   ├── cdrMemoryStream.cc
│   │   │   │   ├── cdrStream.cc
│   │   │   │   ├── cdrStreamAdapter.cc
│   │   │   │   ├── cdrValueChunkStream.cc
│   │   │   │   ├── codeSets.cc
│   │   │   │   ├── constants.cc
│   │   │   │   ├── corbaBoa.cc
│   │   │   │   ├── corbaFixed.cc
│   │   │   │   ├── corbaObject.cc
│   │   │   │   ├── corbaOrb.cc
│   │   │   │   ├── corbaString.cc
│   │   │   │   ├── corbaWString.cc
│   │   │   │   ├── cs-16bit.cc
│   │   │   │   ├── cs-8859-1.cc
│   │   │   │   ├── cs-8bit.cc
│   │   │   │   ├── cs-UTF-16.cc
│   │   │   │   ├── cs-UTF-8.cc
│   │   │   │   ├── current.cc
│   │   │   │   ├── dir.mk
│   │   │   │   ├── dynamicLib.cc
│   │   │   │   ├── exception.cc
│   │   │   │   ├── exceptn.cc
│   │   │   │   ├── giopBiDir.cc
│   │   │   │   ├── giopEndpoint.cc
│   │   │   │   ├── giopImpl10.cc
│   │   │   │   ├── giopImpl11.cc
│   │   │   │   ├── giopImpl12.cc
│   │   │   │   ├── giopMonitor.cc
│   │   │   │   ├── giopRendezvouser.cc
│   │   │   │   ├── giopRope.cc
│   │   │   │   ├── giopServer.cc
│   │   │   │   ├── giopStrand.cc
│   │   │   │   ├── giopStream.cc
│   │   │   │   ├── giopStreamImpl.cc
│   │   │   │   ├── giopWorker.cc
│   │   │   │   ├── inProcessIdentity.cc
│   │   │   │   ├── initRefs.cc
│   │   │   │   ├── interceptors.cc
│   │   │   │   ├── invoker.cc
│   │   │   │   ├── ior.cc
│   │   │   │   ├── libcWrapper.cc
│   │   │   │   ├── localIdentity.cc
│   │   │   │   ├── localObject.cc
│   │   │   │   ├── logIOstream.cc
│   │   │   │   ├── minorCode.cc
│   │   │   │   ├── msvcdllstub.cc
│   │   │   │   ├── objectAdapter.cc
│   │   │   │   ├── objectStub.cc
│   │   │   │   ├── omniIOR.cc
│   │   │   │   ├── omniIdentity.cc
│   │   │   │   ├── omniInternal.cc
│   │   │   │   ├── omniORB.cc
│   │   │   │   ├── omniObjRef.cc
│   │   │   │   ├── omniPolicy.cc
│   │   │   │   ├── omniServant.cc
│   │   │   │   ├── omniTransport.cc
│   │   │   │   ├── orbOptions.cc
│   │   │   │   ├── orbOptionsFile.cc
│   │   │   │   ├── orbOptionsReg.cc
│   │   │   │   ├── poa.cc
│   │   │   │   ├── poamanager.cc
│   │   │   │   ├── poastubs.cc
│   │   │   │   ├── policy.cc
│   │   │   │   ├── portableserver.cc
│   │   │   │   ├── proxyFactory.cc
│   │   │   │   ├── remoteIdentity.cc
│   │   │   │   ├── rmutex.cc
│   │   │   │   ├── shutdownIdentity.cc
│   │   │   │   ├── ssl
│   │   │   │   │   ├── GNUmakefile
│   │   │   │   │   ├── GNUmakefile.in
│   │   │   │   │   ├── README.txt
│   │   │   │   │   ├── dir.mk
│   │   │   │   │   ├── msvcdllstub.cc
│   │   │   │   │   ├── sslActive.cc
│   │   │   │   │   ├── sslAddress.cc
│   │   │   │   │   ├── sslAddress.h
│   │   │   │   │   ├── sslConnection.cc
│   │   │   │   │   ├── sslConnection.h
│   │   │   │   │   ├── sslContext.cc
│   │   │   │   │   ├── sslEndpoint.cc
│   │   │   │   │   ├── sslEndpoint.h
│   │   │   │   │   ├── sslTransportImpl.cc
│   │   │   │   │   └── sslTransportImpl.h
│   │   │   │   ├── tcp
│   │   │   │   │   ├── tcpActive.cc
│   │   │   │   │   ├── tcpAddress.cc
│   │   │   │   │   ├── tcpAddress.h
│   │   │   │   │   ├── tcpConnection.cc
│   │   │   │   │   ├── tcpConnection.h
│   │   │   │   │   ├── tcpEndpoint.cc
│   │   │   │   │   ├── tcpEndpoint.h
│   │   │   │   │   ├── tcpTransportImpl.cc
│   │   │   │   │   └── tcpTransportImpl.h
│   │   │   │   ├── tcpSocket.cc
│   │   │   │   ├── tracedthread.cc
│   │   │   │   ├── transport.txt
│   │   │   │   ├── transportRules.cc
│   │   │   │   ├── unix
│   │   │   │   │   ├── unixActive.cc
│   │   │   │   │   ├── unixAddress.cc
│   │   │   │   │   ├── unixAddress.h
│   │   │   │   │   ├── unixConnection.cc
│   │   │   │   │   ├── unixConnection.h
│   │   │   │   │   ├── unixEndpoint.cc
│   │   │   │   │   ├── unixEndpoint.h
│   │   │   │   │   ├── unixTransportImpl.cc
│   │   │   │   │   └── unixTransportImpl.h
│   │   │   │   └── uri.cc
│   │   │   ├── python
│   │   │   │   ├── GNUmakefile
│   │   │   │   ├── GNUmakefile.in
│   │   │   │   ├── dir.mk
│   │   │   │   └── omniidl_be
│   │   │   │       ├── GNUmakefile
│   │   │   │       ├── GNUmakefile.in
│   │   │   │       ├── __init__.py
│   │   │   │       ├── cxx
│   │   │   │       │   ├── GNUmakefile
│   │   │   │       │   ├── GNUmakefile.in
│   │   │   │       │   ├── __init__.py
│   │   │   │       │   ├── ast.py
│   │   │   │       │   ├── call.py
│   │   │   │       │   ├── config.py
│   │   │   │       │   ├── cxx.py
│   │   │   │       │   ├── descriptor.py
│   │   │   │       │   ├── dir.mk
│   │   │   │       │   ├── dynskel
│   │   │   │       │   │   ├── GNUmakefile
│   │   │   │       │   │   ├── GNUmakefile.in
│   │   │   │       │   │   ├── __init__.py
│   │   │   │       │   │   ├── dir.mk
│   │   │   │       │   │   ├── main.py
│   │   │   │       │   │   ├── template.py
│   │   │   │       │   │   └── typecode.py
│   │   │   │       │   ├── header
│   │   │   │       │   │   ├── GNUmakefile
│   │   │   │       │   │   ├── GNUmakefile.in
│   │   │   │       │   │   ├── __init__.py
│   │   │   │       │   │   ├── defs.py
│   │   │   │       │   │   ├── dir.mk
│   │   │   │       │   │   ├── forward.py
│   │   │   │       │   │   ├── marshal.py
│   │   │   │       │   │   ├── obv.py
│   │   │   │       │   │   ├── opers.py
│   │   │   │       │   │   ├── poa.py
│   │   │   │       │   │   ├── template.py
│   │   │   │       │   │   └── tie.py
│   │   │   │       │   ├── id.py
│   │   │   │       │   ├── iface.py
│   │   │   │       │   ├── impl
│   │   │   │       │   │   ├── GNUmakefile
│   │   │   │       │   │   ├── GNUmakefile.in
│   │   │   │       │   │   ├── __init__.py
│   │   │   │       │   │   ├── dir.mk
│   │   │   │       │   │   ├── main.py
│   │   │   │       │   │   └── template.py
│   │   │   │       │   ├── mangler.py
│   │   │   │       │   ├── mapping.py
│   │   │   │       │   ├── output.py
│   │   │   │       │   ├── skel
│   │   │   │       │   │   ├── GNUmakefile
│   │   │   │       │   │   ├── GNUmakefile.in
│   │   │   │       │   │   ├── __init__.py
│   │   │   │       │   │   ├── dir.mk
│   │   │   │       │   │   ├── main.py
│   │   │   │       │   │   ├── poa.py
│   │   │   │       │   │   └── template.py
│   │   │   │       │   ├── skutil.py
│   │   │   │       │   ├── support.py
│   │   │   │       │   ├── types.py
│   │   │   │       │   ├── util.py
│   │   │   │       │   └── value.py
│   │   │   │       └── dir.mk
│   │   │   ├── python3
│   │   │   │   ├── GNUmakefile
│   │   │   │   ├── GNUmakefile.in
│   │   │   │   ├── dir.mk
│   │   │   │   └── omniidl_be
│   │   │   │       ├── GNUmakefile
│   │   │   │       ├── GNUmakefile.in
│   │   │   │       ├── __init__.py
│   │   │   │       ├── cxx
│   │   │   │       │   ├── GNUmakefile
│   │   │   │       │   ├── GNUmakefile.in
│   │   │   │       │   ├── __init__.py
│   │   │   │       │   ├── ast.py
│   │   │   │       │   ├── call.py
│   │   │   │       │   ├── config.py
│   │   │   │       │   ├── cxx.py
│   │   │   │       │   ├── descriptor.py
│   │   │   │       │   ├── dir.mk
│   │   │   │       │   ├── dynskel
│   │   │   │       │   │   ├── GNUmakefile
│   │   │   │       │   │   ├── GNUmakefile.in
│   │   │   │       │   │   ├── __init__.py
│   │   │   │       │   │   ├── dir.mk
│   │   │   │       │   │   ├── main.py
│   │   │   │       │   │   ├── template.py
│   │   │   │       │   │   └── typecode.py
│   │   │   │       │   ├── header
│   │   │   │       │   │   ├── GNUmakefile
│   │   │   │       │   │   ├── GNUmakefile.in
│   │   │   │       │   │   ├── __init__.py
│   │   │   │       │   │   ├── defs.py
│   │   │   │       │   │   ├── dir.mk
│   │   │   │       │   │   ├── forward.py
│   │   │   │       │   │   ├── marshal.py
│   │   │   │       │   │   ├── obv.py
│   │   │   │       │   │   ├── opers.py
│   │   │   │       │   │   ├── poa.py
│   │   │   │       │   │   ├── template.py
│   │   │   │       │   │   └── tie.py
│   │   │   │       │   ├── id.py
│   │   │   │       │   ├── iface.py
│   │   │   │       │   ├── impl
│   │   │   │       │   │   ├── GNUmakefile
│   │   │   │       │   │   ├── GNUmakefile.in
│   │   │   │       │   │   ├── __init__.py
│   │   │   │       │   │   ├── dir.mk
│   │   │   │       │   │   ├── main.py
│   │   │   │       │   │   └── template.py
│   │   │   │       │   ├── mangler.py
│   │   │   │       │   ├── mapping.py
│   │   │   │       │   ├── output.py
│   │   │   │       │   ├── skel
│   │   │   │       │   │   ├── GNUmakefile
│   │   │   │       │   │   ├── GNUmakefile.in
│   │   │   │       │   │   ├── __init__.py
│   │   │   │       │   │   ├── dir.mk
│   │   │   │       │   │   ├── main.py
│   │   │   │       │   │   ├── poa.py
│   │   │   │       │   │   └── template.py
│   │   │   │       │   ├── skutil.py
│   │   │   │       │   ├── support.py
│   │   │   │       │   ├── types.py
│   │   │   │       │   ├── util.py
│   │   │   │       │   └── value.py
│   │   │   │       └── dir.mk
│   │   │   ├── ziop
│   │   │   │   ├── GNUmakefile
│   │   │   │   ├── GNUmakefile.in
│   │   │   │   ├── dir.mk
│   │   │   │   ├── messagingStubs.cc
│   │   │   │   ├── omniZIOP.cc
│   │   │   │   ├── omniZIOPImpl.h
│   │   │   │   ├── ziopStubs.cc
│   │   │   │   ├── zlibCompressor.cc
│   │   │   │   └── zlibCompressor.h
│   │   │   └── ziopdynamic
│   │   │       ├── GNUmakefile
│   │   │       ├── GNUmakefile.in
│   │   │       ├── compressionDynStubs.cc
│   │   │       ├── dir.mk
│   │   │       ├── omniZIOPDynamic.cc
│   │   │       └── ziopDynStubs.cc
│   │   └── omnithread
│   │       ├── GNUmakefile
│   │       ├── GNUmakefile.in
│   │       ├── dir.mk
│   │       ├── nt.cc
│   │       ├── posix.cc
│   │       ├── threaddata.cc
│   │       └── vxWorks.cc
│   ├── services
│   │   ├── GNUmakefile
│   │   ├── GNUmakefile.in
│   │   ├── dir.mk
│   │   ├── include
│   │   │   ├── BootStrapAgent.h
│   │   │   ├── CosNaming_i.h
│   │   │   ├── CosNotify.h
│   │   │   ├── CosNotifyComm_i.h
│   │   │   └── corba_wrappers.h
│   │   └── mklib
│   │       ├── COS_sysdep.h
│   │       ├── GNUmakefile
│   │       ├── GNUmakefile.in
│   │       ├── cosinterfaces.mk
│   │       ├── dir.mk
│   │       ├── dynstublib
│   │       │   ├── GNUmakefile
│   │       │   ├── GNUmakefile.in
│   │       │   └── dir.mk
│   │       ├── libdefs.mk
│   │       ├── mkBOAlib
│   │       │   ├── COS_sysdep.h
│   │       │   ├── GNUmakefile
│   │       │   ├── GNUmakefile.in
│   │       │   └── dir.mk
│   │       └── stublib
│   │           ├── GNUmakefile
│   │           ├── GNUmakefile.in
│   │           └── dir.mk
│   └── tool
│       ├── GNUmakefile
│       ├── GNUmakefile.in
│       ├── dir.mk
│       ├── omkdepend
│       │   ├── GNUmakefile
│       │   ├── GNUmakefile.in
│       │   ├── README
│       │   ├── cppsetup.c
│       │   ├── def.h
│       │   ├── dir.mk
│       │   ├── gnuwin32.c
│       │   ├── gnuwin32.h
│       │   ├── ifparser.c
│       │   ├── ifparser.h
│       │   ├── include.c
│       │   ├── main.c
│       │   ├── parse.c
│       │   └── pr.c
│       ├── omniidl
│       │   ├── GNUmakefile
│       │   ├── GNUmakefile.in
│       │   ├── LICENSE
│       │   ├── cxx
│       │   │   ├── GNUmakefile
│       │   │   ├── GNUmakefile.in
│       │   │   ├── cccp
│       │   │   │   ├── GNUmakefile
│       │   │   │   ├── GNUmakefile.in
│       │   │   │   ├── alloca.c
│       │   │   │   ├── cccp.1
│       │   │   │   ├── cccp.c
│       │   │   │   ├── cexp.c
│       │   │   │   ├── cexp.y.source
│       │   │   │   ├── config-aix.h
│       │   │   │   ├── config-darwin.h
│       │   │   │   ├── config-freebsd.h
│       │   │   │   ├── config-hpux.h
│       │   │   │   ├── config-irix.h
│       │   │   │   ├── config-linux.h
│       │   │   │   ├── config-lynxos.h
│       │   │   │   ├── config-nextstep.h
│       │   │   │   ├── config-osf1.h
│       │   │   │   ├── config-sinix.h
│       │   │   │   ├── config-solaris.h
│       │   │   │   ├── config-vms.h
│       │   │   │   ├── config-windows.h
│       │   │   │   ├── config.c
│       │   │   │   ├── config.h
│       │   │   │   ├── dir.mk
│       │   │   │   ├── index.c
│       │   │   │   └── pcp.h
│       │   │   ├── dir.mk
│       │   │   ├── idl.ll.source
│       │   │   ├── idl.yy.source
│       │   │   ├── idlast.cc
│       │   │   ├── idlast.h
│       │   │   ├── idlc.cc
│       │   │   ├── idlconfig.cc
│       │   │   ├── idlconfig.h
│       │   │   ├── idldump.cc
│       │   │   ├── idldump.h
│       │   │   ├── idlerr.cc
│       │   │   ├── idlerr.h
│       │   │   ├── idlexpr.cc
│       │   │   ├── idlexpr.h
│       │   │   ├── idlfixed.cc
│       │   │   ├── idlfixed.h
│       │   │   ├── idlmath.h
│       │   │   ├── idlpython.cc
│       │   │   ├── idlrepoId.cc
│       │   │   ├── idlrepoId.h
│       │   │   ├── idlscope.cc
│       │   │   ├── idlscope.h
│       │   │   ├── idlsysdep.h
│       │   │   ├── idltype.cc
│       │   │   ├── idltype.h
│       │   │   ├── idlutil.cc
│       │   │   ├── idlutil.h
│       │   │   ├── idlvalidate.cc
│       │   │   ├── idlvalidate.h
│       │   │   ├── idlvisitor.h
│       │   │   ├── lex.yy.cc
│       │   │   ├── y.tab.cc
│       │   │   └── y.tab.h
│       │   ├── dir.mk
│       │   ├── python
│       │   │   ├── GNUmakefile
│       │   │   ├── GNUmakefile.in
│       │   │   ├── dir.mk
│       │   │   ├── omniidl
│       │   │   │   ├── GNUmakefile
│       │   │   │   ├── GNUmakefile.in
│       │   │   │   ├── __init__.py
│       │   │   │   ├── dir.mk
│       │   │   │   ├── idlast.py
│       │   │   │   ├── idltype.py
│       │   │   │   ├── idlutil.py
│       │   │   │   ├── idlvisitor.py
│       │   │   │   ├── main.py
│       │   │   │   └── output.py
│       │   │   ├── omniidl_be
│       │   │   │   ├── GNUmakefile
│       │   │   │   ├── GNUmakefile.in
│       │   │   │   ├── __init__.py
│       │   │   │   ├── ami.py
│       │   │   │   ├── dir.mk
│       │   │   │   ├── dump.py
│       │   │   │   ├── example.py
│       │   │   │   └── interactive.py
│       │   │   └── scripts
│       │   │       ├── GNUmakefile
│       │   │       ├── GNUmakefile.in
│       │   │       ├── dir.mk
│       │   │       ├── omniidl
│       │   │       ├── omniidl.in
│       │   │       └── omniidlrun.py
│       │   └── python3
│       │       ├── GNUmakefile
│       │       ├── GNUmakefile.in
│       │       ├── dir.mk
│       │       ├── omniidl
│       │       │   ├── GNUmakefile
│       │       │   ├── GNUmakefile.in
│       │       │   ├── __init__.py
│       │       │   ├── dir.mk
│       │       │   ├── idlast.py
│       │       │   ├── idltype.py
│       │       │   ├── idlutil.py
│       │       │   ├── idlvisitor.py
│       │       │   ├── main.py
│       │       │   └── output.py
│       │       ├── omniidl_be
│       │       │   ├── GNUmakefile
│       │       │   ├── GNUmakefile.in
│       │       │   ├── __init__.py
│       │       │   ├── ami.py
│       │       │   ├── dir.mk
│       │       │   ├── dump.py
│       │       │   ├── example.py
│       │       │   └── interactive.py
│       │       └── scripts
│       │           ├── GNUmakefile
│       │           ├── GNUmakefile.in
│       │           ├── dir.mk
│       │           ├── omniidl
│       │           ├── omniidl.in
│       │           └── omniidlrun.py
│       └── win32
│           ├── bccwrapper.c
│           ├── clwrapper.c
│           ├── dir.mk
│           ├── libwrapper.c
│           ├── linkwrapper.c
│           ├── oidlwrapper.c
│           ├── pathmapping.h
│           ├── tlibwrapper.c
│           └── tlinkwrapper.c
└── update.log

102 directories, 1115 files


标签: corba

实例下载地址

omni CORBA 中间件

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警