zeroc-ice 3.7.10 → 3.7.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/dist/IceRuby/Connection.cpp +536 -0
- data/dist/IceRuby/Endpoint.cpp +344 -0
- data/dist/IceRuby/ImplicitContext.cpp +148 -0
- data/dist/IceRuby/Logger.cpp +151 -0
- data/dist/IceRuby/Operation.cpp +665 -0
- data/dist/IceRuby/Properties.cpp +369 -0
- data/dist/IceRuby/Types.cpp +3336 -0
- data/dist/IceRuby/Types.h +604 -0
- data/dist/IceRuby/ValueFactoryManager.cpp +445 -0
- data/dist/ice/cpp/include/Ice/ExceptionHelpers.h +74 -0
- data/dist/ice/cpp/include/Ice/Initialize.h +957 -0
- data/dist/ice/cpp/include/Ice/MetricsObserverI.h +669 -0
- data/dist/ice/cpp/include/Ice/OutgoingAsync.h +868 -0
- data/dist/ice/cpp/include/Ice/Proxy.h +5171 -0
- data/dist/ice/cpp/include/Ice/UserExceptionFactory.h +90 -0
- data/dist/ice/cpp/include/IceDiscovery/IceDiscovery.h +1889 -0
- data/dist/ice/cpp/include/IceLocatorDiscovery/IceLocatorDiscovery.h +1197 -0
- data/dist/ice/cpp/include/IceUtil/Cond.h +317 -0
- data/dist/ice/cpp/include/IceUtil/Config.h +392 -0
- data/dist/ice/cpp/include/IceUtil/CtrlCHandler.h +96 -0
- data/dist/ice/cpp/include/IceUtil/InputUtil.h +42 -0
- data/dist/ice/cpp/include/IceUtil/ResourceConfig.h +37 -0
- data/dist/ice/cpp/include/IceUtil/Timer.h +153 -0
- data/dist/ice/cpp/include/generated/Glacier2/Metrics.h +475 -0
- data/dist/ice/cpp/include/generated/Glacier2/PermissionsVerifier.h +1430 -0
- data/dist/ice/cpp/include/generated/Glacier2/PermissionsVerifierF.h +147 -0
- data/dist/ice/cpp/include/generated/Glacier2/Router.h +3260 -0
- data/dist/ice/cpp/include/generated/Glacier2/RouterF.h +125 -0
- data/dist/ice/cpp/include/generated/Glacier2/SSLInfo.h +223 -0
- data/dist/ice/cpp/include/generated/Glacier2/Session.h +5894 -0
- data/dist/ice/cpp/include/generated/Ice/BuiltinSequences.h +170 -0
- data/dist/ice/cpp/include/generated/Ice/Communicator.h +1162 -0
- data/dist/ice/cpp/include/generated/Ice/CommunicatorF.h +101 -0
- data/dist/ice/cpp/include/generated/Ice/Connection.h +1703 -0
- data/dist/ice/cpp/include/generated/Ice/ConnectionF.h +119 -0
- data/dist/ice/cpp/include/generated/Ice/Current.h +322 -0
- data/dist/ice/cpp/include/generated/Ice/Endpoint.h +979 -0
- data/dist/ice/cpp/include/generated/Ice/EndpointF.h +166 -0
- data/dist/ice/cpp/include/generated/Ice/EndpointTypes.h +118 -0
- data/dist/ice/cpp/include/generated/Ice/FacetMap.h +80 -0
- data/dist/ice/cpp/include/generated/Ice/Identity.h +264 -0
- data/dist/ice/cpp/include/generated/Ice/ImplicitContext.h +284 -0
- data/dist/ice/cpp/include/generated/Ice/ImplicitContextF.h +101 -0
- data/dist/ice/cpp/include/generated/Ice/Instrumentation.h +1203 -0
- data/dist/ice/cpp/include/generated/Ice/InstrumentationF.h +128 -0
- data/dist/ice/cpp/include/generated/Ice/LocalException.h +7437 -0
- data/dist/ice/cpp/include/generated/Ice/Locator.h +3898 -0
- data/dist/ice/cpp/include/generated/Ice/LocatorF.h +147 -0
- data/dist/ice/cpp/include/generated/Ice/Logger.h +237 -0
- data/dist/ice/cpp/include/generated/Ice/LoggerF.h +101 -0
- data/dist/ice/cpp/include/generated/Ice/Metrics.h +4769 -0
- data/dist/ice/cpp/include/generated/Ice/ObjectAdapter.h +1181 -0
- data/dist/ice/cpp/include/generated/Ice/ObjectAdapterF.h +101 -0
- data/dist/ice/cpp/include/generated/Ice/ObjectFactory.h +203 -0
- data/dist/ice/cpp/include/generated/Ice/Plugin.h +318 -0
- data/dist/ice/cpp/include/generated/Ice/PluginF.h +110 -0
- data/dist/ice/cpp/include/generated/Ice/Process.h +977 -0
- data/dist/ice/cpp/include/generated/Ice/ProcessF.h +125 -0
- data/dist/ice/cpp/include/generated/Ice/Properties.h +452 -0
- data/dist/ice/cpp/include/generated/Ice/PropertiesAdmin.h +1366 -0
- data/dist/ice/cpp/include/generated/Ice/PropertiesF.h +134 -0
- data/dist/ice/cpp/include/generated/Ice/RemoteLogger.h +2707 -0
- data/dist/ice/cpp/include/generated/Ice/Router.h +1850 -0
- data/dist/ice/cpp/include/generated/Ice/RouterF.h +125 -0
- data/dist/ice/cpp/include/generated/Ice/ServantLocator.h +305 -0
- data/dist/ice/cpp/include/generated/Ice/ServantLocatorF.h +101 -0
- data/dist/ice/cpp/include/generated/Ice/SliceChecksumDict.h +84 -0
- data/dist/ice/cpp/include/generated/Ice/ValueFactory.h +330 -0
- data/dist/ice/cpp/include/generated/Ice/Version.h +357 -0
- data/dist/ice/cpp/include/generated/IceBox/IceBox.h +3269 -0
- data/dist/ice/cpp/include/generated/IceGrid/Admin.h +33773 -0
- data/dist/ice/cpp/include/generated/IceGrid/Descriptor.h +5254 -0
- data/dist/ice/cpp/include/generated/IceGrid/Exception.h +2834 -0
- data/dist/ice/cpp/include/generated/IceGrid/FileParser.h +824 -0
- data/dist/ice/cpp/include/generated/IceGrid/PluginFacade.h +635 -0
- data/dist/ice/cpp/include/generated/IceGrid/Registry.h +5089 -0
- data/dist/ice/cpp/include/generated/IceGrid/Session.h +2240 -0
- data/dist/ice/cpp/include/generated/IceGrid/UserAccountMapper.h +800 -0
- data/dist/ice/cpp/include/generated/IcePatch2/FileInfo.h +325 -0
- data/dist/ice/cpp/include/generated/IcePatch2/FileServer.h +2891 -0
- data/dist/ice/cpp/include/generated/IceSSL/ConnectionInfo.h +228 -0
- data/dist/ice/cpp/include/generated/IceSSL/ConnectionInfoF.h +101 -0
- data/dist/ice/cpp/include/generated/IceSSL/EndpointInfo.h +186 -0
- data/dist/ice/cpp/include/generated/IceStorm/IceStorm.h +6627 -0
- data/dist/ice/cpp/include/generated/IceStorm/Metrics.h +665 -0
- data/dist/ice/cpp/src/Ice/Application.cpp +661 -0
- data/dist/ice/cpp/src/Ice/CountDownLatch.cpp +171 -0
- data/dist/ice/cpp/src/Ice/DLLMain.cpp +50 -0
- data/dist/ice/cpp/src/Ice/EndpointFactory.cpp +189 -0
- data/dist/ice/cpp/src/Ice/EndpointI.cpp +98 -0
- data/dist/ice/cpp/src/Ice/InputStream.cpp +2741 -0
- data/dist/ice/cpp/src/Ice/MetricsAdminI.cpp +694 -0
- data/dist/ice/cpp/src/Ice/Network.cpp +2249 -0
- data/dist/ice/cpp/src/Ice/ObjectAdapterI.cpp +1530 -0
- data/dist/ice/cpp/src/Ice/OutgoingAsync.cpp +1322 -0
- data/dist/ice/cpp/src/Ice/PluginManagerI.cpp +503 -0
- data/dist/ice/cpp/src/Ice/PropertyNames.cpp +1428 -0
- data/dist/ice/cpp/src/Ice/PropertyNames.h +78 -0
- data/dist/ice/cpp/src/Ice/Proxy.cpp +1604 -0
- data/dist/ice/cpp/src/Ice/Selector.cpp +1535 -0
- data/dist/ice/cpp/src/Ice/Service.cpp +1883 -0
- data/dist/ice/cpp/src/Ice/ThreadPool.cpp +1292 -0
- data/dist/ice/cpp/src/Ice/generated/BuiltinSequences.cpp +49 -0
- data/dist/ice/cpp/src/Ice/generated/Communicator.cpp +79 -0
- data/dist/ice/cpp/src/Ice/generated/CommunicatorF.cpp +61 -0
- data/dist/ice/cpp/src/Ice/generated/Connection.cpp +155 -0
- data/dist/ice/cpp/src/Ice/generated/ConnectionF.cpp +61 -0
- data/dist/ice/cpp/src/Ice/generated/Current.cpp +62 -0
- data/dist/ice/cpp/src/Ice/generated/Endpoint.cpp +147 -0
- data/dist/ice/cpp/src/Ice/generated/EndpointF.cpp +61 -0
- data/dist/ice/cpp/src/Ice/generated/EndpointTypes.cpp +51 -0
- data/dist/ice/cpp/src/Ice/generated/FacetMap.cpp +49 -0
- data/dist/ice/cpp/src/Ice/generated/Identity.cpp +57 -0
- data/dist/ice/cpp/src/Ice/generated/ImplicitContext.cpp +75 -0
- data/dist/ice/cpp/src/Ice/generated/ImplicitContextF.cpp +61 -0
- data/dist/ice/cpp/src/Ice/generated/Instrumentation.cpp +188 -0
- data/dist/ice/cpp/src/Ice/generated/InstrumentationF.cpp +66 -0
- data/dist/ice/cpp/src/Ice/generated/LocalException.cpp +3262 -0
- data/dist/ice/cpp/src/Ice/generated/Locator.cpp +2042 -0
- data/dist/ice/cpp/src/Ice/generated/LocatorF.cpp +63 -0
- data/dist/ice/cpp/src/Ice/generated/Logger.cpp +73 -0
- data/dist/ice/cpp/src/Ice/generated/LoggerF.cpp +61 -0
- data/dist/ice/cpp/src/Ice/generated/Metrics.cpp +2352 -0
- data/dist/ice/cpp/src/Ice/generated/ObjectAdapter.cpp +79 -0
- data/dist/ice/cpp/src/Ice/generated/ObjectAdapterF.cpp +61 -0
- data/dist/ice/cpp/src/Ice/generated/ObjectFactory.cpp +75 -0
- data/dist/ice/cpp/src/Ice/generated/Plugin.cpp +87 -0
- data/dist/ice/cpp/src/Ice/generated/PluginF.cpp +61 -0
- data/dist/ice/cpp/src/Ice/generated/Process.cpp +471 -0
- data/dist/ice/cpp/src/Ice/generated/ProcessF.cpp +63 -0
- data/dist/ice/cpp/src/Ice/generated/Properties.cpp +78 -0
- data/dist/ice/cpp/src/Ice/generated/PropertiesAdmin.cpp +603 -0
- data/dist/ice/cpp/src/Ice/generated/PropertiesF.cpp +63 -0
- data/dist/ice/cpp/src/Ice/generated/RemoteLogger.cpp +1171 -0
- data/dist/ice/cpp/src/Ice/generated/Router.cpp +977 -0
- data/dist/ice/cpp/src/Ice/generated/RouterF.cpp +63 -0
- data/dist/ice/cpp/src/Ice/generated/ServantLocator.cpp +75 -0
- data/dist/ice/cpp/src/Ice/generated/ServantLocatorF.cpp +61 -0
- data/dist/ice/cpp/src/Ice/generated/SliceChecksumDict.cpp +49 -0
- data/dist/ice/cpp/src/Ice/generated/ValueFactory.cpp +83 -0
- data/dist/ice/cpp/src/Ice/generated/Version.cpp +57 -0
- data/dist/ice/cpp/src/Ice/ios/StreamAcceptor.cpp +154 -0
- data/dist/ice/cpp/src/Ice/ios/StreamAcceptor.h +49 -0
- data/dist/ice/cpp/src/Ice/ios/StreamConnector.cpp +146 -0
- data/dist/ice/cpp/src/Ice/ios/StreamConnector.h +52 -0
- data/dist/ice/cpp/src/Ice/ios/StreamEndpointI.cpp +477 -0
- data/dist/ice/cpp/src/Ice/ios/StreamEndpointI.h +156 -0
- data/dist/ice/cpp/src/Ice/ios/StreamTransceiver.cpp +570 -0
- data/dist/ice/cpp/src/Ice/ios/StreamTransceiver.h +93 -0
- data/dist/ice/cpp/src/IceDiscovery/generated/IceDiscovery/IceDiscovery.h +1889 -0
- data/dist/ice/cpp/src/IceDiscovery/generated/IceDiscovery.cpp +915 -0
- data/dist/ice/cpp/src/IceLocatorDiscovery/generated/IceLocatorDiscovery/IceLocatorDiscovery.h +1197 -0
- data/dist/ice/cpp/src/IceLocatorDiscovery/generated/IceLocatorDiscovery.cpp +730 -0
- data/dist/ice/cpp/src/IceSSL/OpenSSLTransceiverI.cpp +1092 -0
- data/dist/ice/cpp/src/IceSSL/PluginI.cpp +246 -0
- data/dist/ice/cpp/src/IceSSL/SecureTransportTransceiverI.cpp +719 -0
- data/dist/ice/cpp/src/IceSSL/SecureTransportUtil.cpp +868 -0
- data/dist/ice/cpp/src/IceSSL/generated/ConnectionInfo.cpp +75 -0
- data/dist/ice/cpp/src/IceSSL/generated/ConnectionInfoF.cpp +61 -0
- data/dist/ice/cpp/src/IceSSL/generated/EndpointInfo.cpp +75 -0
- data/dist/ice/cpp/src/IceUtil/StringConverter.cpp +690 -0
- data/dist/ice/cpp/src/Slice/JavaUtil.cpp +5183 -0
- data/dist/ice/cpp/src/slice2rb/Main.cpp +35 -0
- data/dist/ice/mcpp/directive.c +1407 -0
- data/dist/ice/mcpp/internal.H +530 -0
- data/dist/ice/mcpp/mcpp_main.c +792 -0
- data/dist/ice/mcpp/support.c +1985 -0
- data/dist/ice/mcpp/system.c +2741 -0
- data/dist/ice/slice/Ice/Connection.ice +516 -0
- data/dist/ice/slice/Ice/Locator.ice +239 -0
- data/dist/ice/slice/Ice/Metrics.ice +436 -0
- data/dist/ice/slice/Ice/ObjectAdapter.ice +710 -0
- data/dist/ice/slice/Ice/Router.ice +103 -0
- data/dist/ice/slice/IceGrid/PluginFacade.ice +329 -0
- data/dist/ice/slice/IceStorm/IceStorm.ice +414 -0
- data/dist/lib/Glacier2/Metrics.rb +56 -0
- data/dist/lib/Glacier2/PermissionsVerifier.rb +93 -0
- data/dist/lib/Glacier2/PermissionsVerifierF.rb +30 -0
- data/dist/lib/Glacier2/Router.rb +95 -0
- data/dist/lib/Glacier2/RouterF.rb +25 -0
- data/dist/lib/Glacier2/SSLInfo.rb +72 -0
- data/dist/lib/Glacier2/Session.rb +247 -0
- data/dist/lib/Ice/BuiltinSequences.rb +60 -0
- data/dist/lib/Ice/Communicator.rb +87 -0
- data/dist/lib/Ice/CommunicatorF.rb +24 -0
- data/dist/lib/Ice/Connection.rb +413 -0
- data/dist/lib/Ice/ConnectionF.rb +32 -0
- data/dist/lib/Ice/Current.rb +141 -0
- data/dist/lib/Ice/Endpoint.rb +187 -0
- data/dist/lib/Ice/EndpointF.rb +48 -0
- data/dist/lib/Ice/EndpointTypes.rb +69 -0
- data/dist/lib/Ice/FacetMap.rb +24 -0
- data/dist/lib/Ice/Identity.rb +63 -0
- data/dist/lib/Ice/ImplicitContext.rb +26 -0
- data/dist/lib/Ice/ImplicitContextF.rb +24 -0
- data/dist/lib/Ice/Instrumentation.rb +169 -0
- data/dist/lib/Ice/InstrumentationF.rb +31 -0
- data/dist/lib/Ice/LocalException.rb +1031 -0
- data/dist/lib/Ice/Locator.rb +196 -0
- data/dist/lib/Ice/LocatorF.rb +30 -0
- data/dist/lib/Ice/Logger.rb +24 -0
- data/dist/lib/Ice/LoggerF.rb +24 -0
- data/dist/lib/Ice/Metrics.rb +337 -0
- data/dist/lib/Ice/ObjectAdapter.rb +29 -0
- data/dist/lib/Ice/ObjectAdapterF.rb +24 -0
- data/dist/lib/Ice/ObjectFactory.rb +24 -0
- data/dist/lib/Ice/Plugin.rb +30 -0
- data/dist/lib/Ice/PluginF.rb +28 -0
- data/dist/lib/Ice/Process.rb +53 -0
- data/dist/lib/Ice/ProcessF.rb +25 -0
- data/dist/lib/Ice/Properties.rb +25 -0
- data/dist/lib/Ice/PropertiesAdmin.rb +63 -0
- data/dist/lib/Ice/PropertiesF.rb +29 -0
- data/dist/lib/Ice/RemoteLogger.rb +207 -0
- data/dist/lib/Ice/Router.rb +87 -0
- data/dist/lib/Ice/RouterF.rb +25 -0
- data/dist/lib/Ice/ServantLocator.rb +26 -0
- data/dist/lib/Ice/ServantLocatorF.rb +24 -0
- data/dist/lib/Ice/SliceChecksumDict.rb +24 -0
- data/dist/lib/Ice/ValueFactory.rb +28 -0
- data/dist/lib/Ice/Version.rb +90 -0
- data/dist/lib/IceBox/IceBox.rb +164 -0
- data/dist/lib/IceGrid/Admin.rb +1196 -0
- data/dist/lib/IceGrid/Descriptor.rb +1034 -0
- data/dist/lib/IceGrid/Exception.rb +376 -0
- data/dist/lib/IceGrid/FileParser.rb +65 -0
- data/dist/lib/IceGrid/PluginFacade.rb +35 -0
- data/dist/lib/IceGrid/Registry.rb +209 -0
- data/dist/lib/IceGrid/Session.rb +71 -0
- data/dist/lib/IceGrid/UserAccountMapper.rb +61 -0
- data/dist/lib/IcePatch2/FileInfo.rb +115 -0
- data/dist/lib/IcePatch2/FileServer.rb +123 -0
- data/dist/lib/IceStorm/IceStorm.rb +332 -0
- data/dist/lib/IceStorm/Metrics.rb +73 -0
- data/extconf.rb +91 -0
- data/ice.gemspec +21 -16
- metadata +715 -711
- data/ICE_LICENSE +0 -48
- data/LICENSE +0 -340
- data/MCPP_LICENSE +0 -29
- data/ext/Connection.cpp +0 -532
- data/ext/Endpoint.cpp +0 -340
- data/ext/ImplicitContext.cpp +0 -144
- data/ext/Logger.cpp +0 -147
- data/ext/Operation.cpp +0 -661
- data/ext/Properties.cpp +0 -365
- data/ext/Types.cpp +0 -3325
- data/ext/Types.h +0 -595
- data/ext/ValueFactoryManager.cpp +0 -441
- data/ext/extconf.rb +0 -97
- data/ext/ice/cpp/include/Ice/ExceptionHelpers.h +0 -74
- data/ext/ice/cpp/include/Ice/Initialize.h +0 -957
- data/ext/ice/cpp/include/Ice/MetricsObserverI.h +0 -669
- data/ext/ice/cpp/include/Ice/OutgoingAsync.h +0 -856
- data/ext/ice/cpp/include/Ice/Proxy.h +0 -5154
- data/ext/ice/cpp/include/Ice/UserExceptionFactory.h +0 -88
- data/ext/ice/cpp/include/IceSSL/UWP.h +0 -62
- data/ext/ice/cpp/include/IceUtil/Cond.h +0 -317
- data/ext/ice/cpp/include/IceUtil/Config.h +0 -392
- data/ext/ice/cpp/include/IceUtil/CtrlCHandler.h +0 -92
- data/ext/ice/cpp/include/IceUtil/InputUtil.h +0 -42
- data/ext/ice/cpp/include/IceUtil/ResourceConfig.h +0 -37
- data/ext/ice/cpp/include/IceUtil/Timer.h +0 -144
- data/ext/ice/cpp/include/generated/Ice/BuiltinSequences.h +0 -170
- data/ext/ice/cpp/include/generated/Ice/Communicator.h +0 -1162
- data/ext/ice/cpp/include/generated/Ice/CommunicatorF.h +0 -101
- data/ext/ice/cpp/include/generated/Ice/Connection.h +0 -1703
- data/ext/ice/cpp/include/generated/Ice/ConnectionF.h +0 -119
- data/ext/ice/cpp/include/generated/Ice/Current.h +0 -322
- data/ext/ice/cpp/include/generated/Ice/Endpoint.h +0 -979
- data/ext/ice/cpp/include/generated/Ice/EndpointF.h +0 -166
- data/ext/ice/cpp/include/generated/Ice/EndpointTypes.h +0 -118
- data/ext/ice/cpp/include/generated/Ice/FacetMap.h +0 -80
- data/ext/ice/cpp/include/generated/Ice/Identity.h +0 -264
- data/ext/ice/cpp/include/generated/Ice/ImplicitContext.h +0 -284
- data/ext/ice/cpp/include/generated/Ice/ImplicitContextF.h +0 -101
- data/ext/ice/cpp/include/generated/Ice/Instrumentation.h +0 -1203
- data/ext/ice/cpp/include/generated/Ice/InstrumentationF.h +0 -128
- data/ext/ice/cpp/include/generated/Ice/LocalException.h +0 -7437
- data/ext/ice/cpp/include/generated/Ice/Locator.h +0 -3898
- data/ext/ice/cpp/include/generated/Ice/LocatorF.h +0 -147
- data/ext/ice/cpp/include/generated/Ice/Logger.h +0 -237
- data/ext/ice/cpp/include/generated/Ice/LoggerF.h +0 -101
- data/ext/ice/cpp/include/generated/Ice/Metrics.h +0 -4769
- data/ext/ice/cpp/include/generated/Ice/ObjectAdapter.h +0 -1181
- data/ext/ice/cpp/include/generated/Ice/ObjectAdapterF.h +0 -101
- data/ext/ice/cpp/include/generated/Ice/ObjectFactory.h +0 -203
- data/ext/ice/cpp/include/generated/Ice/Plugin.h +0 -318
- data/ext/ice/cpp/include/generated/Ice/PluginF.h +0 -110
- data/ext/ice/cpp/include/generated/Ice/Process.h +0 -977
- data/ext/ice/cpp/include/generated/Ice/ProcessF.h +0 -125
- data/ext/ice/cpp/include/generated/Ice/Properties.h +0 -452
- data/ext/ice/cpp/include/generated/Ice/PropertiesAdmin.h +0 -1366
- data/ext/ice/cpp/include/generated/Ice/PropertiesF.h +0 -134
- data/ext/ice/cpp/include/generated/Ice/RemoteLogger.h +0 -2707
- data/ext/ice/cpp/include/generated/Ice/Router.h +0 -1850
- data/ext/ice/cpp/include/generated/Ice/RouterF.h +0 -125
- data/ext/ice/cpp/include/generated/Ice/ServantLocator.h +0 -305
- data/ext/ice/cpp/include/generated/Ice/ServantLocatorF.h +0 -101
- data/ext/ice/cpp/include/generated/Ice/SliceChecksumDict.h +0 -84
- data/ext/ice/cpp/include/generated/Ice/ValueFactory.h +0 -330
- data/ext/ice/cpp/include/generated/Ice/Version.h +0 -357
- data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfo.h +0 -228
- data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfoF.h +0 -101
- data/ext/ice/cpp/include/generated/IceSSL/EndpointInfo.h +0 -186
- data/ext/ice/cpp/src/Ice/BuiltinSequences.cpp +0 -49
- data/ext/ice/cpp/src/Ice/Communicator.cpp +0 -79
- data/ext/ice/cpp/src/Ice/CommunicatorF.cpp +0 -61
- data/ext/ice/cpp/src/Ice/Connection.cpp +0 -155
- data/ext/ice/cpp/src/Ice/ConnectionF.cpp +0 -61
- data/ext/ice/cpp/src/Ice/CountDownLatch.cpp +0 -171
- data/ext/ice/cpp/src/Ice/Current.cpp +0 -62
- data/ext/ice/cpp/src/Ice/Endpoint.cpp +0 -147
- data/ext/ice/cpp/src/Ice/EndpointF.cpp +0 -61
- data/ext/ice/cpp/src/Ice/EndpointFactory.cpp +0 -189
- data/ext/ice/cpp/src/Ice/EndpointI.cpp +0 -98
- data/ext/ice/cpp/src/Ice/EndpointTypes.cpp +0 -51
- data/ext/ice/cpp/src/Ice/FacetMap.cpp +0 -49
- data/ext/ice/cpp/src/Ice/Identity.cpp +0 -57
- data/ext/ice/cpp/src/Ice/ImplicitContext.cpp +0 -75
- data/ext/ice/cpp/src/Ice/ImplicitContextF.cpp +0 -61
- data/ext/ice/cpp/src/Ice/InputStream.cpp +0 -2741
- data/ext/ice/cpp/src/Ice/Instrumentation.cpp +0 -188
- data/ext/ice/cpp/src/Ice/InstrumentationF.cpp +0 -66
- data/ext/ice/cpp/src/Ice/LocalException.cpp +0 -3262
- data/ext/ice/cpp/src/Ice/Locator.cpp +0 -2042
- data/ext/ice/cpp/src/Ice/LocatorF.cpp +0 -63
- data/ext/ice/cpp/src/Ice/Logger.cpp +0 -73
- data/ext/ice/cpp/src/Ice/LoggerF.cpp +0 -61
- data/ext/ice/cpp/src/Ice/Metrics.cpp +0 -2352
- data/ext/ice/cpp/src/Ice/MetricsAdminI.cpp +0 -694
- data/ext/ice/cpp/src/Ice/Network.cpp +0 -2249
- data/ext/ice/cpp/src/Ice/ObjectAdapter.cpp +0 -79
- data/ext/ice/cpp/src/Ice/ObjectAdapterF.cpp +0 -61
- data/ext/ice/cpp/src/Ice/ObjectAdapterI.cpp +0 -1530
- data/ext/ice/cpp/src/Ice/ObjectFactory.cpp +0 -75
- data/ext/ice/cpp/src/Ice/OutgoingAsync.cpp +0 -1322
- data/ext/ice/cpp/src/Ice/Plugin.cpp +0 -87
- data/ext/ice/cpp/src/Ice/PluginF.cpp +0 -61
- data/ext/ice/cpp/src/Ice/PluginManagerI.cpp +0 -503
- data/ext/ice/cpp/src/Ice/Process.cpp +0 -471
- data/ext/ice/cpp/src/Ice/ProcessF.cpp +0 -63
- data/ext/ice/cpp/src/Ice/Properties.cpp +0 -78
- data/ext/ice/cpp/src/Ice/PropertiesAdmin.cpp +0 -603
- data/ext/ice/cpp/src/Ice/PropertiesF.cpp +0 -63
- data/ext/ice/cpp/src/Ice/PropertyNames.cpp +0 -1429
- data/ext/ice/cpp/src/Ice/PropertyNames.h +0 -78
- data/ext/ice/cpp/src/Ice/Proxy.cpp +0 -1601
- data/ext/ice/cpp/src/Ice/RemoteLogger.cpp +0 -1171
- data/ext/ice/cpp/src/Ice/Router.cpp +0 -977
- data/ext/ice/cpp/src/Ice/RouterF.cpp +0 -63
- data/ext/ice/cpp/src/Ice/Selector.cpp +0 -1525
- data/ext/ice/cpp/src/Ice/ServantLocator.cpp +0 -75
- data/ext/ice/cpp/src/Ice/ServantLocatorF.cpp +0 -61
- data/ext/ice/cpp/src/Ice/SliceChecksumDict.cpp +0 -49
- data/ext/ice/cpp/src/Ice/ThreadPool.cpp +0 -1292
- data/ext/ice/cpp/src/Ice/ValueFactory.cpp +0 -83
- data/ext/ice/cpp/src/Ice/Version.cpp +0 -57
- data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.cpp +0 -915
- data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.h +0 -1889
- data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.cpp +0 -730
- data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.h +0 -1197
- data/ext/ice/cpp/src/IceSSL/ConnectionInfo.cpp +0 -75
- data/ext/ice/cpp/src/IceSSL/ConnectionInfoF.cpp +0 -61
- data/ext/ice/cpp/src/IceSSL/EndpointInfo.cpp +0 -75
- data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.cpp +0 -1092
- data/ext/ice/cpp/src/IceSSL/PluginI.cpp +0 -246
- data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.cpp +0 -719
- data/ext/ice/cpp/src/IceSSL/SecureTransportUtil.cpp +0 -868
- data/ext/ice/cpp/src/IceSSL/UWPCertificateI.cpp +0 -266
- data/ext/ice/cpp/src/IceSSL/UWPEngine.cpp +0 -338
- data/ext/ice/cpp/src/IceSSL/UWPEngine.h +0 -41
- data/ext/ice/cpp/src/IceSSL/UWPEngineF.h +0 -26
- data/ext/ice/cpp/src/IceSSL/UWPPluginI.cpp +0 -89
- data/ext/ice/cpp/src/IceSSL/UWPTransceiverI.cpp +0 -383
- data/ext/ice/cpp/src/IceSSL/UWPTransceiverI.h +0 -71
- data/ext/ice/cpp/src/IceUtil/StringConverter.cpp +0 -690
- data/ext/ice/cpp/src/Slice/JavaUtil.cpp +0 -5176
- data/ext/ice/mcpp/CMakeLists.txt +0 -80
- data/ext/ice/mcpp/LICENSE +0 -29
- data/ext/ice/mcpp/Makefile +0 -63
- data/ext/ice/mcpp/README.md +0 -32
- data/ext/ice/mcpp/directive.c +0 -1404
- data/ext/ice/mcpp/internal.H +0 -530
- data/ext/ice/mcpp/main.c +0 -792
- data/ext/ice/mcpp/mcpp.gyp +0 -88
- data/ext/ice/mcpp/support.c +0 -1985
- data/ext/ice/mcpp/system.c +0 -2737
- data/lib/Glacier2/Metrics.rb +0 -56
- data/lib/Glacier2/PermissionsVerifier.rb +0 -93
- data/lib/Glacier2/PermissionsVerifierF.rb +0 -30
- data/lib/Glacier2/Router.rb +0 -95
- data/lib/Glacier2/RouterF.rb +0 -25
- data/lib/Glacier2/SSLInfo.rb +0 -72
- data/lib/Glacier2/Session.rb +0 -247
- data/lib/Ice/BuiltinSequences.rb +0 -60
- data/lib/Ice/Communicator.rb +0 -87
- data/lib/Ice/CommunicatorF.rb +0 -24
- data/lib/Ice/Connection.rb +0 -413
- data/lib/Ice/ConnectionF.rb +0 -32
- data/lib/Ice/Current.rb +0 -141
- data/lib/Ice/Endpoint.rb +0 -187
- data/lib/Ice/EndpointF.rb +0 -48
- data/lib/Ice/EndpointTypes.rb +0 -69
- data/lib/Ice/FacetMap.rb +0 -24
- data/lib/Ice/Identity.rb +0 -63
- data/lib/Ice/ImplicitContext.rb +0 -26
- data/lib/Ice/ImplicitContextF.rb +0 -24
- data/lib/Ice/Instrumentation.rb +0 -169
- data/lib/Ice/InstrumentationF.rb +0 -31
- data/lib/Ice/LocalException.rb +0 -1031
- data/lib/Ice/Locator.rb +0 -196
- data/lib/Ice/LocatorF.rb +0 -30
- data/lib/Ice/Logger.rb +0 -24
- data/lib/Ice/LoggerF.rb +0 -24
- data/lib/Ice/Metrics.rb +0 -337
- data/lib/Ice/ObjectAdapter.rb +0 -29
- data/lib/Ice/ObjectAdapterF.rb +0 -24
- data/lib/Ice/ObjectFactory.rb +0 -24
- data/lib/Ice/Plugin.rb +0 -30
- data/lib/Ice/PluginF.rb +0 -28
- data/lib/Ice/Process.rb +0 -53
- data/lib/Ice/ProcessF.rb +0 -25
- data/lib/Ice/Properties.rb +0 -25
- data/lib/Ice/PropertiesAdmin.rb +0 -63
- data/lib/Ice/PropertiesF.rb +0 -29
- data/lib/Ice/RemoteLogger.rb +0 -207
- data/lib/Ice/Router.rb +0 -87
- data/lib/Ice/RouterF.rb +0 -25
- data/lib/Ice/ServantLocator.rb +0 -26
- data/lib/Ice/ServantLocatorF.rb +0 -24
- data/lib/Ice/SliceChecksumDict.rb +0 -24
- data/lib/Ice/ValueFactory.rb +0 -28
- data/lib/Ice/Version.rb +0 -90
- data/lib/IceBox/IceBox.rb +0 -164
- data/lib/IceGrid/Admin.rb +0 -1196
- data/lib/IceGrid/Descriptor.rb +0 -1034
- data/lib/IceGrid/Exception.rb +0 -376
- data/lib/IceGrid/FileParser.rb +0 -65
- data/lib/IceGrid/PluginFacade.rb +0 -35
- data/lib/IceGrid/Registry.rb +0 -209
- data/lib/IceGrid/Session.rb +0 -71
- data/lib/IceGrid/UserAccountMapper.rb +0 -61
- data/lib/IcePatch2/FileInfo.rb +0 -115
- data/lib/IcePatch2/FileServer.rb +0 -123
- data/lib/IceStorm/IceStorm.rb +0 -332
- data/lib/IceStorm/Metrics.rb +0 -73
- data/slice/Ice/Connection.ice +0 -516
- data/slice/Ice/Locator.ice +0 -239
- data/slice/Ice/Metrics.ice +0 -436
- data/slice/Ice/ObjectAdapter.ice +0 -710
- data/slice/Ice/Router.ice +0 -103
- data/slice/IceBT/ConnectionInfo.ice +0 -59
- data/slice/IceBT/EndpointInfo.ice +0 -57
- data/slice/IceBT/Types.ice +0 -45
- data/slice/IceDiscovery/IceDiscovery.ice +0 -98
- data/slice/IceGrid/PluginFacade.ice +0 -329
- data/slice/IceIAP/ConnectionInfo.ice +0 -74
- data/slice/IceIAP/EndpointInfo.ice +0 -68
- data/slice/IceLocatorDiscovery/IceLocatorDiscovery.ice +0 -83
- data/slice/IceSSL/ConnectionInfo.ice +0 -54
- data/slice/IceSSL/ConnectionInfoF.ice +0 -31
- data/slice/IceSSL/EndpointInfo.ice +0 -45
- data/slice/IceStorm/IceStorm.ice +0 -414
- /data/{ext → dist/IceRuby}/Communicator.cpp +0 -0
- /data/{ext → dist/IceRuby}/Communicator.h +0 -0
- /data/{ext → dist/IceRuby}/Config.h +0 -0
- /data/{ext → dist/IceRuby}/Connection.h +0 -0
- /data/{ext → dist/IceRuby}/Endpoint.h +0 -0
- /data/{ext → dist/IceRuby}/ImplicitContext.h +0 -0
- /data/{ext → dist/IceRuby}/Init.cpp +0 -0
- /data/{ext → dist/IceRuby}/Logger.h +0 -0
- /data/{ext → dist/IceRuby}/Operation.h +0 -0
- /data/{ext → dist/IceRuby}/Properties.h +0 -0
- /data/{ext → dist/IceRuby}/Proxy.cpp +0 -0
- /data/{ext → dist/IceRuby}/Proxy.h +0 -0
- /data/{ext → dist/IceRuby}/Slice.cpp +0 -0
- /data/{ext → dist/IceRuby}/Slice.h +0 -0
- /data/{ext → dist/IceRuby}/Util.cpp +0 -0
- /data/{ext → dist/IceRuby}/Util.h +0 -0
- /data/{ext → dist/IceRuby}/ValueFactoryManager.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/Application.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/AsyncResult.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/AsyncResultF.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/BatchRequestInterceptor.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/BatchRequestQueueF.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/Buffer.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/CommunicatorAsync.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/Comparable.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/Config.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/ConnectionAsync.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/ConnectionIF.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/ConsoleUtil.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/DefaultValueFactory.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/DispatchInterceptor.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/Dispatcher.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/DynamicLibrary.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/DynamicLibraryF.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/Exception.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/FactoryTable.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/FactoryTableInit.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/Format.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/Functional.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/GCObject.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/Handle.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/Ice.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/IconvStringConverter.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/Incoming.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/IncomingAsync.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/IncomingAsyncF.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/InputStream.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/InstanceF.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/InterfaceByValue.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/LocalObject.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/LocalObjectF.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/LoggerUtil.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/MetricsAdminI.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/MetricsFunctional.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/NativePropertiesAdmin.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/Object.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/ObjectF.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/ObserverHelper.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/Optional.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/OutgoingAsyncF.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/OutputStream.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/Protocol.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/ProxyF.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/ProxyFactoryF.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/ProxyHandle.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/ReferenceF.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/RegisterPlugins.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/RequestHandlerF.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/ResponseHandlerF.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/SHA1.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/ServantManagerF.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/Service.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/SliceChecksums.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/SlicedData.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/SlicedDataF.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/StreamHelpers.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/StringConverter.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/ThreadPoolF.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/UUID.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/UniquePtr.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/UniqueRef.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/Value.h +0 -0
- /data/{ext → dist}/ice/cpp/include/Ice/ValueF.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceSSL/Config.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceSSL/IceSSL.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceSSL/OpenSSL.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceSSL/Plugin.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceSSL/SChannel.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceSSL/SecureTransport.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/Atomic.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/ConsoleUtil.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/CountDownLatch.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/DisableWarnings.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/Exception.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/FileUtil.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/Functional.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/Handle.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/IceUtil.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/Iterator.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/Lock.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/Monitor.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/Mutex.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/MutexProtocol.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/MutexPtrLock.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/MutexPtrTryLock.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/Optional.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/Options.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/OutputUtil.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/PopDisableWarnings.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/PushDisableWarnings.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/Random.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/RecMutex.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/ScannerConfig.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/ScopedArray.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/Shared.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/StopWatch.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/StringConverter.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/StringUtil.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/Thread.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/ThreadException.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/Time.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/UUID.h +0 -0
- /data/{ext → dist}/ice/cpp/include/IceUtil/UndefSysMacros.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ACM.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ACM.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ACMF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Acceptor.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Acceptor.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/AcceptorF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ArgVector.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ArgVector.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/AsyncResult.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Base64.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Base64.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/BatchRequestQueue.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/BatchRequestQueue.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Buffer.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/CollocatedRequestHandler.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/CollocatedRequestHandler.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/CommunicatorI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/CommunicatorI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Cond.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ConnectRequestHandler.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ConnectRequestHandler.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ConnectRequestHandlerF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ConnectionFactory.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ConnectionFactory.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ConnectionFactoryF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ConnectionI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ConnectionI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ConnectionRequestHandler.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ConnectionRequestHandler.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Connector.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Connector.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ConnectorF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/DefaultsAndOverrides.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/DefaultsAndOverrides.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/DefaultsAndOverridesF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/DispatchInterceptor.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/DynamicLibrary.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/EndpointFactory.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/EndpointFactoryF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/EndpointFactoryManager.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/EndpointFactoryManager.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/EndpointFactoryManagerF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/EndpointI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/EndpointIF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/EventHandler.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/EventHandler.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/EventHandlerF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Exception.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/FactoryTable.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/FactoryTableInit.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/GCObject.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/HashUtil.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/HttpParser.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/HttpParser.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/IPEndpointI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/IPEndpointI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/IPEndpointIF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/IconvStringConverter.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ImplicitContextI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ImplicitContextI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Incoming.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/IncomingAsync.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/IncomingRequest.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Initialize.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Instance.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Instance.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/InstrumentationI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/InstrumentationI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/LocalObject.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/LocatorInfo.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/LocatorInfo.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/LocatorInfoF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/LoggerAdminI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/LoggerAdminI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/LoggerI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/LoggerI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/LoggerUtil.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/MetricsObserverI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Network.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/NetworkF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/NetworkProxy.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/NetworkProxy.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/NetworkProxyF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/OSLogLoggerI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/OSLogLoggerI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Object.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ObjectAdapterFactory.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ObjectAdapterFactory.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ObjectAdapterFactoryF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ObjectAdapterI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ObserverHelper.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/OpaqueEndpointI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/OpaqueEndpointI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/OutputStream.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/PluginManagerI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/PropertiesAdminI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/PropertiesAdminI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/PropertiesI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/PropertiesI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Protocol.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ProtocolInstance.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ProtocolInstance.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ProtocolInstanceF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ProtocolPluginFacade.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ProtocolPluginFacade.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ProtocolPluginFacadeF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ProxyFactory.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ProxyFactory.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Reference.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Reference.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ReferenceFactory.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ReferenceFactory.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ReferenceFactoryF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/RegisterPluginsInit.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/RegisterPluginsInit.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ReplyStatus.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/RequestHandler.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/RequestHandler.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/RequestHandlerFactory.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/RequestHandlerFactory.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ResponseHandler.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ResponseHandler.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/RetryQueue.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/RetryQueue.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/RetryQueueF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/RouterInfo.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/RouterInfo.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/RouterInfoF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/SHA1.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Selector.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ServantManager.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ServantManager.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/SharedContext.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/SliceChecksums.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/SlicedData.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/StreamSocket.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/StreamSocket.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/StringConverterPlugin.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/StringUtil.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/SysLoggerI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/SysLoggerI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/SystemdJournalI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/SystemdJournalI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/TcpAcceptor.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/TcpAcceptor.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/TcpConnector.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/TcpConnector.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/TcpEndpointI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/TcpEndpointI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/TcpTransceiver.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/TcpTransceiver.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Thread.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ThreadPool.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Timer.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/TraceLevels.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/TraceLevels.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/TraceLevelsF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/TraceUtil.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/TraceUtil.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Transceiver.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Transceiver.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/TransceiverF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/UdpConnector.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/UdpConnector.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/UdpEndpointI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/UdpEndpointI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/UdpTransceiver.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/UdpTransceiver.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/Value.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ValueFactoryManagerI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/ValueFactoryManagerI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/VirtualShared.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/WSAcceptor.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/WSAcceptor.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/WSConnector.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/WSConnector.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/WSEndpoint.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/WSEndpoint.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/WSTransceiver.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Ice/WSTransceiver.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceDiscovery/LocatorI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceDiscovery/LocatorI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceDiscovery/LookupI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceDiscovery/LookupI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceDiscovery/PluginI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceDiscovery/PluginI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceLocatorDiscovery/Plugin.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceLocatorDiscovery/PluginI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/AcceptorI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/AcceptorI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/CertificateI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/CertificateI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/ConnectorI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/ConnectorI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/EndpointI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/EndpointI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/Instance.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/Instance.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/InstanceF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/OpenSSLCertificateI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/OpenSSLEngine.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/OpenSSLEngine.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/OpenSSLEngineF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/OpenSSLPluginI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/OpenSSLTransceiverI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/OpenSSLUtil.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/OpenSSLUtil.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/PluginI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/RFC2253.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/RFC2253.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/SChannelCertificateI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/SChannelEngine.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/SChannelEngine.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/SChannelEngineF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/SChannelPluginI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/SChannelTransceiverI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/SChannelTransceiverI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/SSLEngine.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/SSLEngine.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/SSLEngineF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/SecureTransportCertificateI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/SecureTransportEngine.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/SecureTransportEngine.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/SecureTransportEngineF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/SecureTransportPluginI.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/SecureTransportTransceiverI.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/SecureTransportUtil.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/TrustManager.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/TrustManager.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/TrustManagerF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/Util.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceSSL/Util.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceUtil/ConsoleUtil.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceUtil/ConvertUTF.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceUtil/ConvertUTF.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceUtil/CtrlCHandler.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceUtil/FileUtil.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceUtil/InputUtil.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceUtil/MutexProtocol.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceUtil/Options.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceUtil/OutputUtil.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceUtil/Random.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceUtil/RecMutex.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceUtil/Shared.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceUtil/StringUtil.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceUtil/ThreadException.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceUtil/Time.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceUtil/UUID.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceUtil/Unicode.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/IceUtil/Unicode.h +0 -0
- /data/{ext → dist}/ice/cpp/src/IceUtil/UtilException.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/CPlusPlusUtil.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/CPlusPlusUtil.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/Checksum.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/Checksum.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/FileTracker.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/FileTracker.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/Grammar.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/Grammar.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/GrammarUtil.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/JavaUtil.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/MD5.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/MD5.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/MD5I.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/MD5I.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/PHPUtil.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/PHPUtil.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/Parser.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/Parser.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/Preprocessor.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/Preprocessor.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/Python.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/PythonUtil.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/PythonUtil.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/Ruby.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/RubyUtil.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/RubyUtil.h +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/Scanner.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/SliceUtil.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/StringLiteralUtil.cpp +0 -0
- /data/{ext → dist}/ice/cpp/src/Slice/Util.h +0 -0
- /data/{ext → dist}/ice/mcpp/config.h +0 -0
- /data/{ext → dist}/ice/mcpp/configed.H +0 -0
- /data/{ext → dist}/ice/mcpp/eval.c +0 -0
- /data/{ext → dist}/ice/mcpp/expand.c +0 -0
- /data/{ext → dist}/ice/mcpp/mbchar.c +0 -0
- /data/{ext → dist}/ice/mcpp/mcpp_lib.h +0 -0
- /data/{ext → dist}/ice/mcpp/mcpp_out.h +0 -0
- /data/{ext → dist}/ice/mcpp/system.H +0 -0
- /data/{slice → dist/ice/slice}/Glacier2/Metrics.ice +0 -0
- /data/{slice → dist/ice/slice}/Glacier2/PermissionsVerifier.ice +0 -0
- /data/{slice → dist/ice/slice}/Glacier2/PermissionsVerifierF.ice +0 -0
- /data/{slice → dist/ice/slice}/Glacier2/Router.ice +0 -0
- /data/{slice → dist/ice/slice}/Glacier2/RouterF.ice +0 -0
- /data/{slice → dist/ice/slice}/Glacier2/SSLInfo.ice +0 -0
- /data/{slice → dist/ice/slice}/Glacier2/Session.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/BuiltinSequences.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/Communicator.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/CommunicatorF.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/ConnectionF.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/Current.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/Endpoint.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/EndpointF.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/EndpointTypes.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/FacetMap.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/Identity.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/ImplicitContext.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/ImplicitContextF.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/Instrumentation.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/InstrumentationF.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/LocalException.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/LocatorF.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/Logger.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/LoggerF.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/ObjectAdapterF.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/ObjectFactory.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/Plugin.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/PluginF.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/Process.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/ProcessF.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/Properties.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/PropertiesAdmin.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/PropertiesF.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/RemoteLogger.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/RouterF.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/ServantLocator.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/ServantLocatorF.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/SliceChecksumDict.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/ValueFactory.ice +0 -0
- /data/{slice → dist/ice/slice}/Ice/Version.ice +0 -0
- /data/{slice → dist/ice/slice}/IceBox/IceBox.ice +0 -0
- /data/{slice → dist/ice/slice}/IceGrid/Admin.ice +0 -0
- /data/{slice → dist/ice/slice}/IceGrid/Descriptor.ice +0 -0
- /data/{slice → dist/ice/slice}/IceGrid/Exception.ice +0 -0
- /data/{slice → dist/ice/slice}/IceGrid/FileParser.ice +0 -0
- /data/{slice → dist/ice/slice}/IceGrid/Registry.ice +0 -0
- /data/{slice → dist/ice/slice}/IceGrid/Session.ice +0 -0
- /data/{slice → dist/ice/slice}/IceGrid/UserAccountMapper.ice +0 -0
- /data/{slice → dist/ice/slice}/IcePatch2/FileInfo.ice +0 -0
- /data/{slice → dist/ice/slice}/IcePatch2/FileServer.ice +0 -0
- /data/{slice → dist/ice/slice}/IceStorm/Metrics.ice +0 -0
- /data/{lib → dist/lib}/Glacier2.rb +0 -0
- /data/{lib → dist/lib}/Ice.rb +0 -0
- /data/{lib → dist/lib}/IceBox.rb +0 -0
- /data/{lib → dist/lib}/IceGrid.rb +0 -0
- /data/{lib → dist/lib}/IcePatch2.rb +0 -0
- /data/{lib → dist/lib}/IceStorm.rb +0 -0
- /data/{bin → scripts}/slice2rb +0 -0
|
@@ -0,0 +1,3262 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
|
+
//
|
|
4
|
+
//
|
|
5
|
+
// Ice version 3.7.11
|
|
6
|
+
//
|
|
7
|
+
// <auto-generated>
|
|
8
|
+
//
|
|
9
|
+
// Generated from file `LocalException.ice'
|
|
10
|
+
//
|
|
11
|
+
// Warning: do not edit this file.
|
|
12
|
+
//
|
|
13
|
+
// </auto-generated>
|
|
14
|
+
//
|
|
15
|
+
|
|
16
|
+
#ifndef ICE_API_EXPORTS
|
|
17
|
+
# define ICE_API_EXPORTS
|
|
18
|
+
#endif
|
|
19
|
+
#include <Ice/LocalException.h>
|
|
20
|
+
#include <IceUtil/PushDisableWarnings.h>
|
|
21
|
+
#include <Ice/InputStream.h>
|
|
22
|
+
#include <Ice/OutputStream.h>
|
|
23
|
+
#include <IceUtil/PopDisableWarnings.h>
|
|
24
|
+
|
|
25
|
+
#if defined(_MSC_VER)
|
|
26
|
+
# pragma warning(disable:4458) // declaration of ... hides class member
|
|
27
|
+
#elif defined(__clang__)
|
|
28
|
+
# pragma clang diagnostic ignored "-Wshadow"
|
|
29
|
+
#elif defined(__GNUC__)
|
|
30
|
+
# pragma GCC diagnostic ignored "-Wshadow"
|
|
31
|
+
#endif
|
|
32
|
+
|
|
33
|
+
#ifndef ICE_IGNORE_VERSION
|
|
34
|
+
# if ICE_INT_VERSION / 100 != 307
|
|
35
|
+
# error Ice version mismatch!
|
|
36
|
+
# endif
|
|
37
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
38
|
+
# error Beta header file detected
|
|
39
|
+
# endif
|
|
40
|
+
# if ICE_INT_VERSION % 100 < 11
|
|
41
|
+
# error Ice patch level mismatch!
|
|
42
|
+
# endif
|
|
43
|
+
#endif
|
|
44
|
+
|
|
45
|
+
#ifdef ICE_CPP11_MAPPING // C++11 mapping
|
|
46
|
+
|
|
47
|
+
Ice::InitializationException::~InitializationException()
|
|
48
|
+
{
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
const ::std::string&
|
|
52
|
+
Ice::InitializationException::ice_staticId()
|
|
53
|
+
{
|
|
54
|
+
static const ::std::string typeId = "::Ice::InitializationException";
|
|
55
|
+
return typeId;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
Ice::PluginInitializationException::~PluginInitializationException()
|
|
59
|
+
{
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
const ::std::string&
|
|
63
|
+
Ice::PluginInitializationException::ice_staticId()
|
|
64
|
+
{
|
|
65
|
+
static const ::std::string typeId = "::Ice::PluginInitializationException";
|
|
66
|
+
return typeId;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
Ice::CollocationOptimizationException::~CollocationOptimizationException()
|
|
70
|
+
{
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
const ::std::string&
|
|
74
|
+
Ice::CollocationOptimizationException::ice_staticId()
|
|
75
|
+
{
|
|
76
|
+
static const ::std::string typeId = "::Ice::CollocationOptimizationException";
|
|
77
|
+
return typeId;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
Ice::AlreadyRegisteredException::~AlreadyRegisteredException()
|
|
81
|
+
{
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
const ::std::string&
|
|
85
|
+
Ice::AlreadyRegisteredException::ice_staticId()
|
|
86
|
+
{
|
|
87
|
+
static const ::std::string typeId = "::Ice::AlreadyRegisteredException";
|
|
88
|
+
return typeId;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
Ice::NotRegisteredException::~NotRegisteredException()
|
|
92
|
+
{
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
const ::std::string&
|
|
96
|
+
Ice::NotRegisteredException::ice_staticId()
|
|
97
|
+
{
|
|
98
|
+
static const ::std::string typeId = "::Ice::NotRegisteredException";
|
|
99
|
+
return typeId;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
Ice::TwowayOnlyException::~TwowayOnlyException()
|
|
103
|
+
{
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
const ::std::string&
|
|
107
|
+
Ice::TwowayOnlyException::ice_staticId()
|
|
108
|
+
{
|
|
109
|
+
static const ::std::string typeId = "::Ice::TwowayOnlyException";
|
|
110
|
+
return typeId;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
Ice::CloneNotImplementedException::~CloneNotImplementedException()
|
|
114
|
+
{
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
const ::std::string&
|
|
118
|
+
Ice::CloneNotImplementedException::ice_staticId()
|
|
119
|
+
{
|
|
120
|
+
static const ::std::string typeId = "::Ice::CloneNotImplementedException";
|
|
121
|
+
return typeId;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
Ice::UnknownException::~UnknownException()
|
|
125
|
+
{
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
const ::std::string&
|
|
129
|
+
Ice::UnknownException::ice_staticId()
|
|
130
|
+
{
|
|
131
|
+
static const ::std::string typeId = "::Ice::UnknownException";
|
|
132
|
+
return typeId;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
Ice::UnknownLocalException::~UnknownLocalException()
|
|
136
|
+
{
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
const ::std::string&
|
|
140
|
+
Ice::UnknownLocalException::ice_staticId()
|
|
141
|
+
{
|
|
142
|
+
static const ::std::string typeId = "::Ice::UnknownLocalException";
|
|
143
|
+
return typeId;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
Ice::UnknownUserException::~UnknownUserException()
|
|
147
|
+
{
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
const ::std::string&
|
|
151
|
+
Ice::UnknownUserException::ice_staticId()
|
|
152
|
+
{
|
|
153
|
+
static const ::std::string typeId = "::Ice::UnknownUserException";
|
|
154
|
+
return typeId;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
Ice::VersionMismatchException::~VersionMismatchException()
|
|
158
|
+
{
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
const ::std::string&
|
|
162
|
+
Ice::VersionMismatchException::ice_staticId()
|
|
163
|
+
{
|
|
164
|
+
static const ::std::string typeId = "::Ice::VersionMismatchException";
|
|
165
|
+
return typeId;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
Ice::CommunicatorDestroyedException::~CommunicatorDestroyedException()
|
|
169
|
+
{
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
const ::std::string&
|
|
173
|
+
Ice::CommunicatorDestroyedException::ice_staticId()
|
|
174
|
+
{
|
|
175
|
+
static const ::std::string typeId = "::Ice::CommunicatorDestroyedException";
|
|
176
|
+
return typeId;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
Ice::ObjectAdapterDeactivatedException::~ObjectAdapterDeactivatedException()
|
|
180
|
+
{
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
const ::std::string&
|
|
184
|
+
Ice::ObjectAdapterDeactivatedException::ice_staticId()
|
|
185
|
+
{
|
|
186
|
+
static const ::std::string typeId = "::Ice::ObjectAdapterDeactivatedException";
|
|
187
|
+
return typeId;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
Ice::ObjectAdapterIdInUseException::~ObjectAdapterIdInUseException()
|
|
191
|
+
{
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
const ::std::string&
|
|
195
|
+
Ice::ObjectAdapterIdInUseException::ice_staticId()
|
|
196
|
+
{
|
|
197
|
+
static const ::std::string typeId = "::Ice::ObjectAdapterIdInUseException";
|
|
198
|
+
return typeId;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
Ice::NoEndpointException::~NoEndpointException()
|
|
202
|
+
{
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
const ::std::string&
|
|
206
|
+
Ice::NoEndpointException::ice_staticId()
|
|
207
|
+
{
|
|
208
|
+
static const ::std::string typeId = "::Ice::NoEndpointException";
|
|
209
|
+
return typeId;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
Ice::EndpointParseException::~EndpointParseException()
|
|
213
|
+
{
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
const ::std::string&
|
|
217
|
+
Ice::EndpointParseException::ice_staticId()
|
|
218
|
+
{
|
|
219
|
+
static const ::std::string typeId = "::Ice::EndpointParseException";
|
|
220
|
+
return typeId;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
Ice::EndpointSelectionTypeParseException::~EndpointSelectionTypeParseException()
|
|
224
|
+
{
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
const ::std::string&
|
|
228
|
+
Ice::EndpointSelectionTypeParseException::ice_staticId()
|
|
229
|
+
{
|
|
230
|
+
static const ::std::string typeId = "::Ice::EndpointSelectionTypeParseException";
|
|
231
|
+
return typeId;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
Ice::VersionParseException::~VersionParseException()
|
|
235
|
+
{
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
const ::std::string&
|
|
239
|
+
Ice::VersionParseException::ice_staticId()
|
|
240
|
+
{
|
|
241
|
+
static const ::std::string typeId = "::Ice::VersionParseException";
|
|
242
|
+
return typeId;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
Ice::IdentityParseException::~IdentityParseException()
|
|
246
|
+
{
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
const ::std::string&
|
|
250
|
+
Ice::IdentityParseException::ice_staticId()
|
|
251
|
+
{
|
|
252
|
+
static const ::std::string typeId = "::Ice::IdentityParseException";
|
|
253
|
+
return typeId;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
Ice::ProxyParseException::~ProxyParseException()
|
|
257
|
+
{
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
const ::std::string&
|
|
261
|
+
Ice::ProxyParseException::ice_staticId()
|
|
262
|
+
{
|
|
263
|
+
static const ::std::string typeId = "::Ice::ProxyParseException";
|
|
264
|
+
return typeId;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
Ice::IllegalIdentityException::~IllegalIdentityException()
|
|
268
|
+
{
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
const ::std::string&
|
|
272
|
+
Ice::IllegalIdentityException::ice_staticId()
|
|
273
|
+
{
|
|
274
|
+
static const ::std::string typeId = "::Ice::IllegalIdentityException";
|
|
275
|
+
return typeId;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
Ice::IllegalServantException::~IllegalServantException()
|
|
279
|
+
{
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
const ::std::string&
|
|
283
|
+
Ice::IllegalServantException::ice_staticId()
|
|
284
|
+
{
|
|
285
|
+
static const ::std::string typeId = "::Ice::IllegalServantException";
|
|
286
|
+
return typeId;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
Ice::RequestFailedException::~RequestFailedException()
|
|
290
|
+
{
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
const ::std::string&
|
|
294
|
+
Ice::RequestFailedException::ice_staticId()
|
|
295
|
+
{
|
|
296
|
+
static const ::std::string typeId = "::Ice::RequestFailedException";
|
|
297
|
+
return typeId;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
Ice::ObjectNotExistException::~ObjectNotExistException()
|
|
301
|
+
{
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
const ::std::string&
|
|
305
|
+
Ice::ObjectNotExistException::ice_staticId()
|
|
306
|
+
{
|
|
307
|
+
static const ::std::string typeId = "::Ice::ObjectNotExistException";
|
|
308
|
+
return typeId;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
Ice::FacetNotExistException::~FacetNotExistException()
|
|
312
|
+
{
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
const ::std::string&
|
|
316
|
+
Ice::FacetNotExistException::ice_staticId()
|
|
317
|
+
{
|
|
318
|
+
static const ::std::string typeId = "::Ice::FacetNotExistException";
|
|
319
|
+
return typeId;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
Ice::OperationNotExistException::~OperationNotExistException()
|
|
323
|
+
{
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
const ::std::string&
|
|
327
|
+
Ice::OperationNotExistException::ice_staticId()
|
|
328
|
+
{
|
|
329
|
+
static const ::std::string typeId = "::Ice::OperationNotExistException";
|
|
330
|
+
return typeId;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
Ice::SyscallException::~SyscallException()
|
|
334
|
+
{
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
const ::std::string&
|
|
338
|
+
Ice::SyscallException::ice_staticId()
|
|
339
|
+
{
|
|
340
|
+
static const ::std::string typeId = "::Ice::SyscallException";
|
|
341
|
+
return typeId;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
Ice::SocketException::~SocketException()
|
|
345
|
+
{
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
const ::std::string&
|
|
349
|
+
Ice::SocketException::ice_staticId()
|
|
350
|
+
{
|
|
351
|
+
static const ::std::string typeId = "::Ice::SocketException";
|
|
352
|
+
return typeId;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
Ice::CFNetworkException::~CFNetworkException()
|
|
356
|
+
{
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
const ::std::string&
|
|
360
|
+
Ice::CFNetworkException::ice_staticId()
|
|
361
|
+
{
|
|
362
|
+
static const ::std::string typeId = "::Ice::CFNetworkException";
|
|
363
|
+
return typeId;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
Ice::FileException::~FileException()
|
|
367
|
+
{
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
const ::std::string&
|
|
371
|
+
Ice::FileException::ice_staticId()
|
|
372
|
+
{
|
|
373
|
+
static const ::std::string typeId = "::Ice::FileException";
|
|
374
|
+
return typeId;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
Ice::ConnectFailedException::~ConnectFailedException()
|
|
378
|
+
{
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
const ::std::string&
|
|
382
|
+
Ice::ConnectFailedException::ice_staticId()
|
|
383
|
+
{
|
|
384
|
+
static const ::std::string typeId = "::Ice::ConnectFailedException";
|
|
385
|
+
return typeId;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
Ice::ConnectionRefusedException::~ConnectionRefusedException()
|
|
389
|
+
{
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
const ::std::string&
|
|
393
|
+
Ice::ConnectionRefusedException::ice_staticId()
|
|
394
|
+
{
|
|
395
|
+
static const ::std::string typeId = "::Ice::ConnectionRefusedException";
|
|
396
|
+
return typeId;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
Ice::ConnectionLostException::~ConnectionLostException()
|
|
400
|
+
{
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
const ::std::string&
|
|
404
|
+
Ice::ConnectionLostException::ice_staticId()
|
|
405
|
+
{
|
|
406
|
+
static const ::std::string typeId = "::Ice::ConnectionLostException";
|
|
407
|
+
return typeId;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
Ice::DNSException::~DNSException()
|
|
411
|
+
{
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
const ::std::string&
|
|
415
|
+
Ice::DNSException::ice_staticId()
|
|
416
|
+
{
|
|
417
|
+
static const ::std::string typeId = "::Ice::DNSException";
|
|
418
|
+
return typeId;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
Ice::OperationInterruptedException::~OperationInterruptedException()
|
|
422
|
+
{
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
const ::std::string&
|
|
426
|
+
Ice::OperationInterruptedException::ice_staticId()
|
|
427
|
+
{
|
|
428
|
+
static const ::std::string typeId = "::Ice::OperationInterruptedException";
|
|
429
|
+
return typeId;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
Ice::TimeoutException::~TimeoutException()
|
|
433
|
+
{
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
const ::std::string&
|
|
437
|
+
Ice::TimeoutException::ice_staticId()
|
|
438
|
+
{
|
|
439
|
+
static const ::std::string typeId = "::Ice::TimeoutException";
|
|
440
|
+
return typeId;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
Ice::ConnectTimeoutException::~ConnectTimeoutException()
|
|
444
|
+
{
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
const ::std::string&
|
|
448
|
+
Ice::ConnectTimeoutException::ice_staticId()
|
|
449
|
+
{
|
|
450
|
+
static const ::std::string typeId = "::Ice::ConnectTimeoutException";
|
|
451
|
+
return typeId;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
Ice::CloseTimeoutException::~CloseTimeoutException()
|
|
455
|
+
{
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
const ::std::string&
|
|
459
|
+
Ice::CloseTimeoutException::ice_staticId()
|
|
460
|
+
{
|
|
461
|
+
static const ::std::string typeId = "::Ice::CloseTimeoutException";
|
|
462
|
+
return typeId;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
Ice::ConnectionTimeoutException::~ConnectionTimeoutException()
|
|
466
|
+
{
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
const ::std::string&
|
|
470
|
+
Ice::ConnectionTimeoutException::ice_staticId()
|
|
471
|
+
{
|
|
472
|
+
static const ::std::string typeId = "::Ice::ConnectionTimeoutException";
|
|
473
|
+
return typeId;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
Ice::InvocationTimeoutException::~InvocationTimeoutException()
|
|
477
|
+
{
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
const ::std::string&
|
|
481
|
+
Ice::InvocationTimeoutException::ice_staticId()
|
|
482
|
+
{
|
|
483
|
+
static const ::std::string typeId = "::Ice::InvocationTimeoutException";
|
|
484
|
+
return typeId;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
Ice::InvocationCanceledException::~InvocationCanceledException()
|
|
488
|
+
{
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
const ::std::string&
|
|
492
|
+
Ice::InvocationCanceledException::ice_staticId()
|
|
493
|
+
{
|
|
494
|
+
static const ::std::string typeId = "::Ice::InvocationCanceledException";
|
|
495
|
+
return typeId;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
Ice::ProtocolException::~ProtocolException()
|
|
499
|
+
{
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
const ::std::string&
|
|
503
|
+
Ice::ProtocolException::ice_staticId()
|
|
504
|
+
{
|
|
505
|
+
static const ::std::string typeId = "::Ice::ProtocolException";
|
|
506
|
+
return typeId;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
Ice::BadMagicException::~BadMagicException()
|
|
510
|
+
{
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
const ::std::string&
|
|
514
|
+
Ice::BadMagicException::ice_staticId()
|
|
515
|
+
{
|
|
516
|
+
static const ::std::string typeId = "::Ice::BadMagicException";
|
|
517
|
+
return typeId;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
Ice::UnsupportedProtocolException::~UnsupportedProtocolException()
|
|
521
|
+
{
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
const ::std::string&
|
|
525
|
+
Ice::UnsupportedProtocolException::ice_staticId()
|
|
526
|
+
{
|
|
527
|
+
static const ::std::string typeId = "::Ice::UnsupportedProtocolException";
|
|
528
|
+
return typeId;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
Ice::UnsupportedEncodingException::~UnsupportedEncodingException()
|
|
532
|
+
{
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
const ::std::string&
|
|
536
|
+
Ice::UnsupportedEncodingException::ice_staticId()
|
|
537
|
+
{
|
|
538
|
+
static const ::std::string typeId = "::Ice::UnsupportedEncodingException";
|
|
539
|
+
return typeId;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
Ice::UnknownMessageException::~UnknownMessageException()
|
|
543
|
+
{
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
const ::std::string&
|
|
547
|
+
Ice::UnknownMessageException::ice_staticId()
|
|
548
|
+
{
|
|
549
|
+
static const ::std::string typeId = "::Ice::UnknownMessageException";
|
|
550
|
+
return typeId;
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
Ice::ConnectionNotValidatedException::~ConnectionNotValidatedException()
|
|
554
|
+
{
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
const ::std::string&
|
|
558
|
+
Ice::ConnectionNotValidatedException::ice_staticId()
|
|
559
|
+
{
|
|
560
|
+
static const ::std::string typeId = "::Ice::ConnectionNotValidatedException";
|
|
561
|
+
return typeId;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
Ice::UnknownRequestIdException::~UnknownRequestIdException()
|
|
565
|
+
{
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
const ::std::string&
|
|
569
|
+
Ice::UnknownRequestIdException::ice_staticId()
|
|
570
|
+
{
|
|
571
|
+
static const ::std::string typeId = "::Ice::UnknownRequestIdException";
|
|
572
|
+
return typeId;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
Ice::UnknownReplyStatusException::~UnknownReplyStatusException()
|
|
576
|
+
{
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
const ::std::string&
|
|
580
|
+
Ice::UnknownReplyStatusException::ice_staticId()
|
|
581
|
+
{
|
|
582
|
+
static const ::std::string typeId = "::Ice::UnknownReplyStatusException";
|
|
583
|
+
return typeId;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
Ice::CloseConnectionException::~CloseConnectionException()
|
|
587
|
+
{
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
const ::std::string&
|
|
591
|
+
Ice::CloseConnectionException::ice_staticId()
|
|
592
|
+
{
|
|
593
|
+
static const ::std::string typeId = "::Ice::CloseConnectionException";
|
|
594
|
+
return typeId;
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
Ice::ConnectionManuallyClosedException::~ConnectionManuallyClosedException()
|
|
598
|
+
{
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
const ::std::string&
|
|
602
|
+
Ice::ConnectionManuallyClosedException::ice_staticId()
|
|
603
|
+
{
|
|
604
|
+
static const ::std::string typeId = "::Ice::ConnectionManuallyClosedException";
|
|
605
|
+
return typeId;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
Ice::IllegalMessageSizeException::~IllegalMessageSizeException()
|
|
609
|
+
{
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
const ::std::string&
|
|
613
|
+
Ice::IllegalMessageSizeException::ice_staticId()
|
|
614
|
+
{
|
|
615
|
+
static const ::std::string typeId = "::Ice::IllegalMessageSizeException";
|
|
616
|
+
return typeId;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
Ice::CompressionException::~CompressionException()
|
|
620
|
+
{
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
const ::std::string&
|
|
624
|
+
Ice::CompressionException::ice_staticId()
|
|
625
|
+
{
|
|
626
|
+
static const ::std::string typeId = "::Ice::CompressionException";
|
|
627
|
+
return typeId;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
Ice::DatagramLimitException::~DatagramLimitException()
|
|
631
|
+
{
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
const ::std::string&
|
|
635
|
+
Ice::DatagramLimitException::ice_staticId()
|
|
636
|
+
{
|
|
637
|
+
static const ::std::string typeId = "::Ice::DatagramLimitException";
|
|
638
|
+
return typeId;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
Ice::MarshalException::~MarshalException()
|
|
642
|
+
{
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
const ::std::string&
|
|
646
|
+
Ice::MarshalException::ice_staticId()
|
|
647
|
+
{
|
|
648
|
+
static const ::std::string typeId = "::Ice::MarshalException";
|
|
649
|
+
return typeId;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
Ice::ProxyUnmarshalException::~ProxyUnmarshalException()
|
|
653
|
+
{
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
const ::std::string&
|
|
657
|
+
Ice::ProxyUnmarshalException::ice_staticId()
|
|
658
|
+
{
|
|
659
|
+
static const ::std::string typeId = "::Ice::ProxyUnmarshalException";
|
|
660
|
+
return typeId;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
Ice::UnmarshalOutOfBoundsException::~UnmarshalOutOfBoundsException()
|
|
664
|
+
{
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
const ::std::string&
|
|
668
|
+
Ice::UnmarshalOutOfBoundsException::ice_staticId()
|
|
669
|
+
{
|
|
670
|
+
static const ::std::string typeId = "::Ice::UnmarshalOutOfBoundsException";
|
|
671
|
+
return typeId;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
Ice::NoValueFactoryException::~NoValueFactoryException()
|
|
675
|
+
{
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
const ::std::string&
|
|
679
|
+
Ice::NoValueFactoryException::ice_staticId()
|
|
680
|
+
{
|
|
681
|
+
static const ::std::string typeId = "::Ice::NoValueFactoryException";
|
|
682
|
+
return typeId;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
Ice::UnexpectedObjectException::~UnexpectedObjectException()
|
|
686
|
+
{
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
const ::std::string&
|
|
690
|
+
Ice::UnexpectedObjectException::ice_staticId()
|
|
691
|
+
{
|
|
692
|
+
static const ::std::string typeId = "::Ice::UnexpectedObjectException";
|
|
693
|
+
return typeId;
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
Ice::MemoryLimitException::~MemoryLimitException()
|
|
697
|
+
{
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
const ::std::string&
|
|
701
|
+
Ice::MemoryLimitException::ice_staticId()
|
|
702
|
+
{
|
|
703
|
+
static const ::std::string typeId = "::Ice::MemoryLimitException";
|
|
704
|
+
return typeId;
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
Ice::StringConversionException::~StringConversionException()
|
|
708
|
+
{
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
const ::std::string&
|
|
712
|
+
Ice::StringConversionException::ice_staticId()
|
|
713
|
+
{
|
|
714
|
+
static const ::std::string typeId = "::Ice::StringConversionException";
|
|
715
|
+
return typeId;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
Ice::EncapsulationException::~EncapsulationException()
|
|
719
|
+
{
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
const ::std::string&
|
|
723
|
+
Ice::EncapsulationException::ice_staticId()
|
|
724
|
+
{
|
|
725
|
+
static const ::std::string typeId = "::Ice::EncapsulationException";
|
|
726
|
+
return typeId;
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
Ice::FeatureNotSupportedException::~FeatureNotSupportedException()
|
|
730
|
+
{
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
const ::std::string&
|
|
734
|
+
Ice::FeatureNotSupportedException::ice_staticId()
|
|
735
|
+
{
|
|
736
|
+
static const ::std::string typeId = "::Ice::FeatureNotSupportedException";
|
|
737
|
+
return typeId;
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
Ice::SecurityException::~SecurityException()
|
|
741
|
+
{
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
const ::std::string&
|
|
745
|
+
Ice::SecurityException::ice_staticId()
|
|
746
|
+
{
|
|
747
|
+
static const ::std::string typeId = "::Ice::SecurityException";
|
|
748
|
+
return typeId;
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
Ice::FixedProxyException::~FixedProxyException()
|
|
752
|
+
{
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
const ::std::string&
|
|
756
|
+
Ice::FixedProxyException::ice_staticId()
|
|
757
|
+
{
|
|
758
|
+
static const ::std::string typeId = "::Ice::FixedProxyException";
|
|
759
|
+
return typeId;
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
Ice::ResponseSentException::~ResponseSentException()
|
|
763
|
+
{
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
const ::std::string&
|
|
767
|
+
Ice::ResponseSentException::ice_staticId()
|
|
768
|
+
{
|
|
769
|
+
static const ::std::string typeId = "::Ice::ResponseSentException";
|
|
770
|
+
return typeId;
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
#else // C++98 mapping
|
|
774
|
+
|
|
775
|
+
Ice::InitializationException::InitializationException(const char* file, int line) :
|
|
776
|
+
LocalException(file, line)
|
|
777
|
+
{
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
Ice::InitializationException::InitializationException(const char* file, int line, const ::std::string& reason) :
|
|
781
|
+
LocalException(file, line),
|
|
782
|
+
reason(reason)
|
|
783
|
+
{
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
#ifdef ICE_CPP11_COMPILER
|
|
787
|
+
Ice::InitializationException::~InitializationException()
|
|
788
|
+
{
|
|
789
|
+
}
|
|
790
|
+
#else
|
|
791
|
+
Ice::InitializationException::~InitializationException() throw()
|
|
792
|
+
{
|
|
793
|
+
}
|
|
794
|
+
#endif
|
|
795
|
+
|
|
796
|
+
::std::string
|
|
797
|
+
Ice::InitializationException::ice_id() const
|
|
798
|
+
{
|
|
799
|
+
return "::Ice::InitializationException";
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
Ice::InitializationException*
|
|
803
|
+
Ice::InitializationException::ice_clone() const
|
|
804
|
+
{
|
|
805
|
+
return new InitializationException(*this);
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
void
|
|
809
|
+
Ice::InitializationException::ice_throw() const
|
|
810
|
+
{
|
|
811
|
+
throw *this;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
Ice::PluginInitializationException::PluginInitializationException(const char* file, int line) :
|
|
815
|
+
LocalException(file, line)
|
|
816
|
+
{
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
Ice::PluginInitializationException::PluginInitializationException(const char* file, int line, const ::std::string& reason) :
|
|
820
|
+
LocalException(file, line),
|
|
821
|
+
reason(reason)
|
|
822
|
+
{
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
#ifdef ICE_CPP11_COMPILER
|
|
826
|
+
Ice::PluginInitializationException::~PluginInitializationException()
|
|
827
|
+
{
|
|
828
|
+
}
|
|
829
|
+
#else
|
|
830
|
+
Ice::PluginInitializationException::~PluginInitializationException() throw()
|
|
831
|
+
{
|
|
832
|
+
}
|
|
833
|
+
#endif
|
|
834
|
+
|
|
835
|
+
::std::string
|
|
836
|
+
Ice::PluginInitializationException::ice_id() const
|
|
837
|
+
{
|
|
838
|
+
return "::Ice::PluginInitializationException";
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
Ice::PluginInitializationException*
|
|
842
|
+
Ice::PluginInitializationException::ice_clone() const
|
|
843
|
+
{
|
|
844
|
+
return new PluginInitializationException(*this);
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
void
|
|
848
|
+
Ice::PluginInitializationException::ice_throw() const
|
|
849
|
+
{
|
|
850
|
+
throw *this;
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
Ice::CollocationOptimizationException::CollocationOptimizationException(const char* file, int line) :
|
|
854
|
+
LocalException(file, line)
|
|
855
|
+
{
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
#ifdef ICE_CPP11_COMPILER
|
|
859
|
+
Ice::CollocationOptimizationException::~CollocationOptimizationException()
|
|
860
|
+
{
|
|
861
|
+
}
|
|
862
|
+
#else
|
|
863
|
+
Ice::CollocationOptimizationException::~CollocationOptimizationException() throw()
|
|
864
|
+
{
|
|
865
|
+
}
|
|
866
|
+
#endif
|
|
867
|
+
|
|
868
|
+
::std::string
|
|
869
|
+
Ice::CollocationOptimizationException::ice_id() const
|
|
870
|
+
{
|
|
871
|
+
return "::Ice::CollocationOptimizationException";
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
Ice::CollocationOptimizationException*
|
|
875
|
+
Ice::CollocationOptimizationException::ice_clone() const
|
|
876
|
+
{
|
|
877
|
+
return new CollocationOptimizationException(*this);
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
void
|
|
881
|
+
Ice::CollocationOptimizationException::ice_throw() const
|
|
882
|
+
{
|
|
883
|
+
throw *this;
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
Ice::AlreadyRegisteredException::AlreadyRegisteredException(const char* file, int line) :
|
|
887
|
+
LocalException(file, line)
|
|
888
|
+
{
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
Ice::AlreadyRegisteredException::AlreadyRegisteredException(const char* file, int line, const ::std::string& kindOfObject, const ::std::string& id) :
|
|
892
|
+
LocalException(file, line),
|
|
893
|
+
kindOfObject(kindOfObject),
|
|
894
|
+
id(id)
|
|
895
|
+
{
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
#ifdef ICE_CPP11_COMPILER
|
|
899
|
+
Ice::AlreadyRegisteredException::~AlreadyRegisteredException()
|
|
900
|
+
{
|
|
901
|
+
}
|
|
902
|
+
#else
|
|
903
|
+
Ice::AlreadyRegisteredException::~AlreadyRegisteredException() throw()
|
|
904
|
+
{
|
|
905
|
+
}
|
|
906
|
+
#endif
|
|
907
|
+
|
|
908
|
+
::std::string
|
|
909
|
+
Ice::AlreadyRegisteredException::ice_id() const
|
|
910
|
+
{
|
|
911
|
+
return "::Ice::AlreadyRegisteredException";
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
Ice::AlreadyRegisteredException*
|
|
915
|
+
Ice::AlreadyRegisteredException::ice_clone() const
|
|
916
|
+
{
|
|
917
|
+
return new AlreadyRegisteredException(*this);
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
void
|
|
921
|
+
Ice::AlreadyRegisteredException::ice_throw() const
|
|
922
|
+
{
|
|
923
|
+
throw *this;
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
Ice::NotRegisteredException::NotRegisteredException(const char* file, int line) :
|
|
927
|
+
LocalException(file, line)
|
|
928
|
+
{
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
Ice::NotRegisteredException::NotRegisteredException(const char* file, int line, const ::std::string& kindOfObject, const ::std::string& id) :
|
|
932
|
+
LocalException(file, line),
|
|
933
|
+
kindOfObject(kindOfObject),
|
|
934
|
+
id(id)
|
|
935
|
+
{
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
#ifdef ICE_CPP11_COMPILER
|
|
939
|
+
Ice::NotRegisteredException::~NotRegisteredException()
|
|
940
|
+
{
|
|
941
|
+
}
|
|
942
|
+
#else
|
|
943
|
+
Ice::NotRegisteredException::~NotRegisteredException() throw()
|
|
944
|
+
{
|
|
945
|
+
}
|
|
946
|
+
#endif
|
|
947
|
+
|
|
948
|
+
::std::string
|
|
949
|
+
Ice::NotRegisteredException::ice_id() const
|
|
950
|
+
{
|
|
951
|
+
return "::Ice::NotRegisteredException";
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
Ice::NotRegisteredException*
|
|
955
|
+
Ice::NotRegisteredException::ice_clone() const
|
|
956
|
+
{
|
|
957
|
+
return new NotRegisteredException(*this);
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
void
|
|
961
|
+
Ice::NotRegisteredException::ice_throw() const
|
|
962
|
+
{
|
|
963
|
+
throw *this;
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
Ice::TwowayOnlyException::TwowayOnlyException(const char* file, int line) :
|
|
967
|
+
LocalException(file, line)
|
|
968
|
+
{
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
Ice::TwowayOnlyException::TwowayOnlyException(const char* file, int line, const ::std::string& operation) :
|
|
972
|
+
LocalException(file, line),
|
|
973
|
+
operation(operation)
|
|
974
|
+
{
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
#ifdef ICE_CPP11_COMPILER
|
|
978
|
+
Ice::TwowayOnlyException::~TwowayOnlyException()
|
|
979
|
+
{
|
|
980
|
+
}
|
|
981
|
+
#else
|
|
982
|
+
Ice::TwowayOnlyException::~TwowayOnlyException() throw()
|
|
983
|
+
{
|
|
984
|
+
}
|
|
985
|
+
#endif
|
|
986
|
+
|
|
987
|
+
::std::string
|
|
988
|
+
Ice::TwowayOnlyException::ice_id() const
|
|
989
|
+
{
|
|
990
|
+
return "::Ice::TwowayOnlyException";
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
Ice::TwowayOnlyException*
|
|
994
|
+
Ice::TwowayOnlyException::ice_clone() const
|
|
995
|
+
{
|
|
996
|
+
return new TwowayOnlyException(*this);
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
void
|
|
1000
|
+
Ice::TwowayOnlyException::ice_throw() const
|
|
1001
|
+
{
|
|
1002
|
+
throw *this;
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
Ice::CloneNotImplementedException::CloneNotImplementedException(const char* file, int line) :
|
|
1006
|
+
LocalException(file, line)
|
|
1007
|
+
{
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1011
|
+
Ice::CloneNotImplementedException::~CloneNotImplementedException()
|
|
1012
|
+
{
|
|
1013
|
+
}
|
|
1014
|
+
#else
|
|
1015
|
+
Ice::CloneNotImplementedException::~CloneNotImplementedException() throw()
|
|
1016
|
+
{
|
|
1017
|
+
}
|
|
1018
|
+
#endif
|
|
1019
|
+
|
|
1020
|
+
::std::string
|
|
1021
|
+
Ice::CloneNotImplementedException::ice_id() const
|
|
1022
|
+
{
|
|
1023
|
+
return "::Ice::CloneNotImplementedException";
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
Ice::CloneNotImplementedException*
|
|
1027
|
+
Ice::CloneNotImplementedException::ice_clone() const
|
|
1028
|
+
{
|
|
1029
|
+
return new CloneNotImplementedException(*this);
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
void
|
|
1033
|
+
Ice::CloneNotImplementedException::ice_throw() const
|
|
1034
|
+
{
|
|
1035
|
+
throw *this;
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
Ice::UnknownException::UnknownException(const char* file, int line) :
|
|
1039
|
+
LocalException(file, line)
|
|
1040
|
+
{
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
Ice::UnknownException::UnknownException(const char* file, int line, const ::std::string& unknown) :
|
|
1044
|
+
LocalException(file, line),
|
|
1045
|
+
unknown(unknown)
|
|
1046
|
+
{
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1050
|
+
Ice::UnknownException::~UnknownException()
|
|
1051
|
+
{
|
|
1052
|
+
}
|
|
1053
|
+
#else
|
|
1054
|
+
Ice::UnknownException::~UnknownException() throw()
|
|
1055
|
+
{
|
|
1056
|
+
}
|
|
1057
|
+
#endif
|
|
1058
|
+
|
|
1059
|
+
::std::string
|
|
1060
|
+
Ice::UnknownException::ice_id() const
|
|
1061
|
+
{
|
|
1062
|
+
return "::Ice::UnknownException";
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
Ice::UnknownException*
|
|
1066
|
+
Ice::UnknownException::ice_clone() const
|
|
1067
|
+
{
|
|
1068
|
+
return new UnknownException(*this);
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
void
|
|
1072
|
+
Ice::UnknownException::ice_throw() const
|
|
1073
|
+
{
|
|
1074
|
+
throw *this;
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1077
|
+
Ice::UnknownLocalException::UnknownLocalException(const char* file, int line) :
|
|
1078
|
+
UnknownException(file, line)
|
|
1079
|
+
{
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
Ice::UnknownLocalException::UnknownLocalException(const char* file, int line, const ::std::string& unknown) :
|
|
1083
|
+
UnknownException(file, line, unknown)
|
|
1084
|
+
{
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1088
|
+
Ice::UnknownLocalException::~UnknownLocalException()
|
|
1089
|
+
{
|
|
1090
|
+
}
|
|
1091
|
+
#else
|
|
1092
|
+
Ice::UnknownLocalException::~UnknownLocalException() throw()
|
|
1093
|
+
{
|
|
1094
|
+
}
|
|
1095
|
+
#endif
|
|
1096
|
+
|
|
1097
|
+
::std::string
|
|
1098
|
+
Ice::UnknownLocalException::ice_id() const
|
|
1099
|
+
{
|
|
1100
|
+
return "::Ice::UnknownLocalException";
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
Ice::UnknownLocalException*
|
|
1104
|
+
Ice::UnknownLocalException::ice_clone() const
|
|
1105
|
+
{
|
|
1106
|
+
return new UnknownLocalException(*this);
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
void
|
|
1110
|
+
Ice::UnknownLocalException::ice_throw() const
|
|
1111
|
+
{
|
|
1112
|
+
throw *this;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
Ice::UnknownUserException::UnknownUserException(const char* file, int line) :
|
|
1116
|
+
UnknownException(file, line)
|
|
1117
|
+
{
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
Ice::UnknownUserException::UnknownUserException(const char* file, int line, const ::std::string& unknown) :
|
|
1121
|
+
UnknownException(file, line, unknown)
|
|
1122
|
+
{
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1126
|
+
Ice::UnknownUserException::~UnknownUserException()
|
|
1127
|
+
{
|
|
1128
|
+
}
|
|
1129
|
+
#else
|
|
1130
|
+
Ice::UnknownUserException::~UnknownUserException() throw()
|
|
1131
|
+
{
|
|
1132
|
+
}
|
|
1133
|
+
#endif
|
|
1134
|
+
|
|
1135
|
+
::std::string
|
|
1136
|
+
Ice::UnknownUserException::ice_id() const
|
|
1137
|
+
{
|
|
1138
|
+
return "::Ice::UnknownUserException";
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
Ice::UnknownUserException*
|
|
1142
|
+
Ice::UnknownUserException::ice_clone() const
|
|
1143
|
+
{
|
|
1144
|
+
return new UnknownUserException(*this);
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
void
|
|
1148
|
+
Ice::UnknownUserException::ice_throw() const
|
|
1149
|
+
{
|
|
1150
|
+
throw *this;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
Ice::VersionMismatchException::VersionMismatchException(const char* file, int line) :
|
|
1154
|
+
LocalException(file, line)
|
|
1155
|
+
{
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1159
|
+
Ice::VersionMismatchException::~VersionMismatchException()
|
|
1160
|
+
{
|
|
1161
|
+
}
|
|
1162
|
+
#else
|
|
1163
|
+
Ice::VersionMismatchException::~VersionMismatchException() throw()
|
|
1164
|
+
{
|
|
1165
|
+
}
|
|
1166
|
+
#endif
|
|
1167
|
+
|
|
1168
|
+
::std::string
|
|
1169
|
+
Ice::VersionMismatchException::ice_id() const
|
|
1170
|
+
{
|
|
1171
|
+
return "::Ice::VersionMismatchException";
|
|
1172
|
+
}
|
|
1173
|
+
|
|
1174
|
+
Ice::VersionMismatchException*
|
|
1175
|
+
Ice::VersionMismatchException::ice_clone() const
|
|
1176
|
+
{
|
|
1177
|
+
return new VersionMismatchException(*this);
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
void
|
|
1181
|
+
Ice::VersionMismatchException::ice_throw() const
|
|
1182
|
+
{
|
|
1183
|
+
throw *this;
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
Ice::CommunicatorDestroyedException::CommunicatorDestroyedException(const char* file, int line) :
|
|
1187
|
+
LocalException(file, line)
|
|
1188
|
+
{
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1192
|
+
Ice::CommunicatorDestroyedException::~CommunicatorDestroyedException()
|
|
1193
|
+
{
|
|
1194
|
+
}
|
|
1195
|
+
#else
|
|
1196
|
+
Ice::CommunicatorDestroyedException::~CommunicatorDestroyedException() throw()
|
|
1197
|
+
{
|
|
1198
|
+
}
|
|
1199
|
+
#endif
|
|
1200
|
+
|
|
1201
|
+
::std::string
|
|
1202
|
+
Ice::CommunicatorDestroyedException::ice_id() const
|
|
1203
|
+
{
|
|
1204
|
+
return "::Ice::CommunicatorDestroyedException";
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
Ice::CommunicatorDestroyedException*
|
|
1208
|
+
Ice::CommunicatorDestroyedException::ice_clone() const
|
|
1209
|
+
{
|
|
1210
|
+
return new CommunicatorDestroyedException(*this);
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
void
|
|
1214
|
+
Ice::CommunicatorDestroyedException::ice_throw() const
|
|
1215
|
+
{
|
|
1216
|
+
throw *this;
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
Ice::ObjectAdapterDeactivatedException::ObjectAdapterDeactivatedException(const char* file, int line) :
|
|
1220
|
+
LocalException(file, line)
|
|
1221
|
+
{
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
Ice::ObjectAdapterDeactivatedException::ObjectAdapterDeactivatedException(const char* file, int line, const ::std::string& name) :
|
|
1225
|
+
LocalException(file, line),
|
|
1226
|
+
name(name)
|
|
1227
|
+
{
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1231
|
+
Ice::ObjectAdapterDeactivatedException::~ObjectAdapterDeactivatedException()
|
|
1232
|
+
{
|
|
1233
|
+
}
|
|
1234
|
+
#else
|
|
1235
|
+
Ice::ObjectAdapterDeactivatedException::~ObjectAdapterDeactivatedException() throw()
|
|
1236
|
+
{
|
|
1237
|
+
}
|
|
1238
|
+
#endif
|
|
1239
|
+
|
|
1240
|
+
::std::string
|
|
1241
|
+
Ice::ObjectAdapterDeactivatedException::ice_id() const
|
|
1242
|
+
{
|
|
1243
|
+
return "::Ice::ObjectAdapterDeactivatedException";
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
Ice::ObjectAdapterDeactivatedException*
|
|
1247
|
+
Ice::ObjectAdapterDeactivatedException::ice_clone() const
|
|
1248
|
+
{
|
|
1249
|
+
return new ObjectAdapterDeactivatedException(*this);
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
void
|
|
1253
|
+
Ice::ObjectAdapterDeactivatedException::ice_throw() const
|
|
1254
|
+
{
|
|
1255
|
+
throw *this;
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1258
|
+
Ice::ObjectAdapterIdInUseException::ObjectAdapterIdInUseException(const char* file, int line) :
|
|
1259
|
+
LocalException(file, line)
|
|
1260
|
+
{
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1263
|
+
Ice::ObjectAdapterIdInUseException::ObjectAdapterIdInUseException(const char* file, int line, const ::std::string& id) :
|
|
1264
|
+
LocalException(file, line),
|
|
1265
|
+
id(id)
|
|
1266
|
+
{
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1270
|
+
Ice::ObjectAdapterIdInUseException::~ObjectAdapterIdInUseException()
|
|
1271
|
+
{
|
|
1272
|
+
}
|
|
1273
|
+
#else
|
|
1274
|
+
Ice::ObjectAdapterIdInUseException::~ObjectAdapterIdInUseException() throw()
|
|
1275
|
+
{
|
|
1276
|
+
}
|
|
1277
|
+
#endif
|
|
1278
|
+
|
|
1279
|
+
::std::string
|
|
1280
|
+
Ice::ObjectAdapterIdInUseException::ice_id() const
|
|
1281
|
+
{
|
|
1282
|
+
return "::Ice::ObjectAdapterIdInUseException";
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
Ice::ObjectAdapterIdInUseException*
|
|
1286
|
+
Ice::ObjectAdapterIdInUseException::ice_clone() const
|
|
1287
|
+
{
|
|
1288
|
+
return new ObjectAdapterIdInUseException(*this);
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
void
|
|
1292
|
+
Ice::ObjectAdapterIdInUseException::ice_throw() const
|
|
1293
|
+
{
|
|
1294
|
+
throw *this;
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
Ice::NoEndpointException::NoEndpointException(const char* file, int line) :
|
|
1298
|
+
LocalException(file, line)
|
|
1299
|
+
{
|
|
1300
|
+
}
|
|
1301
|
+
|
|
1302
|
+
Ice::NoEndpointException::NoEndpointException(const char* file, int line, const ::std::string& proxy) :
|
|
1303
|
+
LocalException(file, line),
|
|
1304
|
+
proxy(proxy)
|
|
1305
|
+
{
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1308
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1309
|
+
Ice::NoEndpointException::~NoEndpointException()
|
|
1310
|
+
{
|
|
1311
|
+
}
|
|
1312
|
+
#else
|
|
1313
|
+
Ice::NoEndpointException::~NoEndpointException() throw()
|
|
1314
|
+
{
|
|
1315
|
+
}
|
|
1316
|
+
#endif
|
|
1317
|
+
|
|
1318
|
+
::std::string
|
|
1319
|
+
Ice::NoEndpointException::ice_id() const
|
|
1320
|
+
{
|
|
1321
|
+
return "::Ice::NoEndpointException";
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
Ice::NoEndpointException*
|
|
1325
|
+
Ice::NoEndpointException::ice_clone() const
|
|
1326
|
+
{
|
|
1327
|
+
return new NoEndpointException(*this);
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
void
|
|
1331
|
+
Ice::NoEndpointException::ice_throw() const
|
|
1332
|
+
{
|
|
1333
|
+
throw *this;
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
Ice::EndpointParseException::EndpointParseException(const char* file, int line) :
|
|
1337
|
+
LocalException(file, line)
|
|
1338
|
+
{
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
Ice::EndpointParseException::EndpointParseException(const char* file, int line, const ::std::string& str) :
|
|
1342
|
+
LocalException(file, line),
|
|
1343
|
+
str(str)
|
|
1344
|
+
{
|
|
1345
|
+
}
|
|
1346
|
+
|
|
1347
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1348
|
+
Ice::EndpointParseException::~EndpointParseException()
|
|
1349
|
+
{
|
|
1350
|
+
}
|
|
1351
|
+
#else
|
|
1352
|
+
Ice::EndpointParseException::~EndpointParseException() throw()
|
|
1353
|
+
{
|
|
1354
|
+
}
|
|
1355
|
+
#endif
|
|
1356
|
+
|
|
1357
|
+
::std::string
|
|
1358
|
+
Ice::EndpointParseException::ice_id() const
|
|
1359
|
+
{
|
|
1360
|
+
return "::Ice::EndpointParseException";
|
|
1361
|
+
}
|
|
1362
|
+
|
|
1363
|
+
Ice::EndpointParseException*
|
|
1364
|
+
Ice::EndpointParseException::ice_clone() const
|
|
1365
|
+
{
|
|
1366
|
+
return new EndpointParseException(*this);
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
void
|
|
1370
|
+
Ice::EndpointParseException::ice_throw() const
|
|
1371
|
+
{
|
|
1372
|
+
throw *this;
|
|
1373
|
+
}
|
|
1374
|
+
|
|
1375
|
+
Ice::EndpointSelectionTypeParseException::EndpointSelectionTypeParseException(const char* file, int line) :
|
|
1376
|
+
LocalException(file, line)
|
|
1377
|
+
{
|
|
1378
|
+
}
|
|
1379
|
+
|
|
1380
|
+
Ice::EndpointSelectionTypeParseException::EndpointSelectionTypeParseException(const char* file, int line, const ::std::string& str) :
|
|
1381
|
+
LocalException(file, line),
|
|
1382
|
+
str(str)
|
|
1383
|
+
{
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1386
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1387
|
+
Ice::EndpointSelectionTypeParseException::~EndpointSelectionTypeParseException()
|
|
1388
|
+
{
|
|
1389
|
+
}
|
|
1390
|
+
#else
|
|
1391
|
+
Ice::EndpointSelectionTypeParseException::~EndpointSelectionTypeParseException() throw()
|
|
1392
|
+
{
|
|
1393
|
+
}
|
|
1394
|
+
#endif
|
|
1395
|
+
|
|
1396
|
+
::std::string
|
|
1397
|
+
Ice::EndpointSelectionTypeParseException::ice_id() const
|
|
1398
|
+
{
|
|
1399
|
+
return "::Ice::EndpointSelectionTypeParseException";
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1402
|
+
Ice::EndpointSelectionTypeParseException*
|
|
1403
|
+
Ice::EndpointSelectionTypeParseException::ice_clone() const
|
|
1404
|
+
{
|
|
1405
|
+
return new EndpointSelectionTypeParseException(*this);
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
void
|
|
1409
|
+
Ice::EndpointSelectionTypeParseException::ice_throw() const
|
|
1410
|
+
{
|
|
1411
|
+
throw *this;
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
Ice::VersionParseException::VersionParseException(const char* file, int line) :
|
|
1415
|
+
LocalException(file, line)
|
|
1416
|
+
{
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
Ice::VersionParseException::VersionParseException(const char* file, int line, const ::std::string& str) :
|
|
1420
|
+
LocalException(file, line),
|
|
1421
|
+
str(str)
|
|
1422
|
+
{
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1426
|
+
Ice::VersionParseException::~VersionParseException()
|
|
1427
|
+
{
|
|
1428
|
+
}
|
|
1429
|
+
#else
|
|
1430
|
+
Ice::VersionParseException::~VersionParseException() throw()
|
|
1431
|
+
{
|
|
1432
|
+
}
|
|
1433
|
+
#endif
|
|
1434
|
+
|
|
1435
|
+
::std::string
|
|
1436
|
+
Ice::VersionParseException::ice_id() const
|
|
1437
|
+
{
|
|
1438
|
+
return "::Ice::VersionParseException";
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
Ice::VersionParseException*
|
|
1442
|
+
Ice::VersionParseException::ice_clone() const
|
|
1443
|
+
{
|
|
1444
|
+
return new VersionParseException(*this);
|
|
1445
|
+
}
|
|
1446
|
+
|
|
1447
|
+
void
|
|
1448
|
+
Ice::VersionParseException::ice_throw() const
|
|
1449
|
+
{
|
|
1450
|
+
throw *this;
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
Ice::IdentityParseException::IdentityParseException(const char* file, int line) :
|
|
1454
|
+
LocalException(file, line)
|
|
1455
|
+
{
|
|
1456
|
+
}
|
|
1457
|
+
|
|
1458
|
+
Ice::IdentityParseException::IdentityParseException(const char* file, int line, const ::std::string& str) :
|
|
1459
|
+
LocalException(file, line),
|
|
1460
|
+
str(str)
|
|
1461
|
+
{
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1464
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1465
|
+
Ice::IdentityParseException::~IdentityParseException()
|
|
1466
|
+
{
|
|
1467
|
+
}
|
|
1468
|
+
#else
|
|
1469
|
+
Ice::IdentityParseException::~IdentityParseException() throw()
|
|
1470
|
+
{
|
|
1471
|
+
}
|
|
1472
|
+
#endif
|
|
1473
|
+
|
|
1474
|
+
::std::string
|
|
1475
|
+
Ice::IdentityParseException::ice_id() const
|
|
1476
|
+
{
|
|
1477
|
+
return "::Ice::IdentityParseException";
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
Ice::IdentityParseException*
|
|
1481
|
+
Ice::IdentityParseException::ice_clone() const
|
|
1482
|
+
{
|
|
1483
|
+
return new IdentityParseException(*this);
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
void
|
|
1487
|
+
Ice::IdentityParseException::ice_throw() const
|
|
1488
|
+
{
|
|
1489
|
+
throw *this;
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1492
|
+
Ice::ProxyParseException::ProxyParseException(const char* file, int line) :
|
|
1493
|
+
LocalException(file, line)
|
|
1494
|
+
{
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
Ice::ProxyParseException::ProxyParseException(const char* file, int line, const ::std::string& str) :
|
|
1498
|
+
LocalException(file, line),
|
|
1499
|
+
str(str)
|
|
1500
|
+
{
|
|
1501
|
+
}
|
|
1502
|
+
|
|
1503
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1504
|
+
Ice::ProxyParseException::~ProxyParseException()
|
|
1505
|
+
{
|
|
1506
|
+
}
|
|
1507
|
+
#else
|
|
1508
|
+
Ice::ProxyParseException::~ProxyParseException() throw()
|
|
1509
|
+
{
|
|
1510
|
+
}
|
|
1511
|
+
#endif
|
|
1512
|
+
|
|
1513
|
+
::std::string
|
|
1514
|
+
Ice::ProxyParseException::ice_id() const
|
|
1515
|
+
{
|
|
1516
|
+
return "::Ice::ProxyParseException";
|
|
1517
|
+
}
|
|
1518
|
+
|
|
1519
|
+
Ice::ProxyParseException*
|
|
1520
|
+
Ice::ProxyParseException::ice_clone() const
|
|
1521
|
+
{
|
|
1522
|
+
return new ProxyParseException(*this);
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
void
|
|
1526
|
+
Ice::ProxyParseException::ice_throw() const
|
|
1527
|
+
{
|
|
1528
|
+
throw *this;
|
|
1529
|
+
}
|
|
1530
|
+
|
|
1531
|
+
Ice::IllegalIdentityException::IllegalIdentityException(const char* file, int line) :
|
|
1532
|
+
LocalException(file, line)
|
|
1533
|
+
{
|
|
1534
|
+
}
|
|
1535
|
+
|
|
1536
|
+
Ice::IllegalIdentityException::IllegalIdentityException(const char* file, int line, const Identity& id) :
|
|
1537
|
+
LocalException(file, line),
|
|
1538
|
+
id(id)
|
|
1539
|
+
{
|
|
1540
|
+
}
|
|
1541
|
+
|
|
1542
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1543
|
+
Ice::IllegalIdentityException::~IllegalIdentityException()
|
|
1544
|
+
{
|
|
1545
|
+
}
|
|
1546
|
+
#else
|
|
1547
|
+
Ice::IllegalIdentityException::~IllegalIdentityException() throw()
|
|
1548
|
+
{
|
|
1549
|
+
}
|
|
1550
|
+
#endif
|
|
1551
|
+
|
|
1552
|
+
::std::string
|
|
1553
|
+
Ice::IllegalIdentityException::ice_id() const
|
|
1554
|
+
{
|
|
1555
|
+
return "::Ice::IllegalIdentityException";
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1558
|
+
Ice::IllegalIdentityException*
|
|
1559
|
+
Ice::IllegalIdentityException::ice_clone() const
|
|
1560
|
+
{
|
|
1561
|
+
return new IllegalIdentityException(*this);
|
|
1562
|
+
}
|
|
1563
|
+
|
|
1564
|
+
void
|
|
1565
|
+
Ice::IllegalIdentityException::ice_throw() const
|
|
1566
|
+
{
|
|
1567
|
+
throw *this;
|
|
1568
|
+
}
|
|
1569
|
+
|
|
1570
|
+
Ice::IllegalServantException::IllegalServantException(const char* file, int line) :
|
|
1571
|
+
LocalException(file, line)
|
|
1572
|
+
{
|
|
1573
|
+
}
|
|
1574
|
+
|
|
1575
|
+
Ice::IllegalServantException::IllegalServantException(const char* file, int line, const ::std::string& reason) :
|
|
1576
|
+
LocalException(file, line),
|
|
1577
|
+
reason(reason)
|
|
1578
|
+
{
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1582
|
+
Ice::IllegalServantException::~IllegalServantException()
|
|
1583
|
+
{
|
|
1584
|
+
}
|
|
1585
|
+
#else
|
|
1586
|
+
Ice::IllegalServantException::~IllegalServantException() throw()
|
|
1587
|
+
{
|
|
1588
|
+
}
|
|
1589
|
+
#endif
|
|
1590
|
+
|
|
1591
|
+
::std::string
|
|
1592
|
+
Ice::IllegalServantException::ice_id() const
|
|
1593
|
+
{
|
|
1594
|
+
return "::Ice::IllegalServantException";
|
|
1595
|
+
}
|
|
1596
|
+
|
|
1597
|
+
Ice::IllegalServantException*
|
|
1598
|
+
Ice::IllegalServantException::ice_clone() const
|
|
1599
|
+
{
|
|
1600
|
+
return new IllegalServantException(*this);
|
|
1601
|
+
}
|
|
1602
|
+
|
|
1603
|
+
void
|
|
1604
|
+
Ice::IllegalServantException::ice_throw() const
|
|
1605
|
+
{
|
|
1606
|
+
throw *this;
|
|
1607
|
+
}
|
|
1608
|
+
|
|
1609
|
+
Ice::RequestFailedException::RequestFailedException(const char* file, int line) :
|
|
1610
|
+
LocalException(file, line)
|
|
1611
|
+
{
|
|
1612
|
+
}
|
|
1613
|
+
|
|
1614
|
+
Ice::RequestFailedException::RequestFailedException(const char* file, int line, const Identity& id, const ::std::string& facet, const ::std::string& operation) :
|
|
1615
|
+
LocalException(file, line),
|
|
1616
|
+
id(id),
|
|
1617
|
+
facet(facet),
|
|
1618
|
+
operation(operation)
|
|
1619
|
+
{
|
|
1620
|
+
}
|
|
1621
|
+
|
|
1622
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1623
|
+
Ice::RequestFailedException::~RequestFailedException()
|
|
1624
|
+
{
|
|
1625
|
+
}
|
|
1626
|
+
#else
|
|
1627
|
+
Ice::RequestFailedException::~RequestFailedException() throw()
|
|
1628
|
+
{
|
|
1629
|
+
}
|
|
1630
|
+
#endif
|
|
1631
|
+
|
|
1632
|
+
::std::string
|
|
1633
|
+
Ice::RequestFailedException::ice_id() const
|
|
1634
|
+
{
|
|
1635
|
+
return "::Ice::RequestFailedException";
|
|
1636
|
+
}
|
|
1637
|
+
|
|
1638
|
+
Ice::RequestFailedException*
|
|
1639
|
+
Ice::RequestFailedException::ice_clone() const
|
|
1640
|
+
{
|
|
1641
|
+
return new RequestFailedException(*this);
|
|
1642
|
+
}
|
|
1643
|
+
|
|
1644
|
+
void
|
|
1645
|
+
Ice::RequestFailedException::ice_throw() const
|
|
1646
|
+
{
|
|
1647
|
+
throw *this;
|
|
1648
|
+
}
|
|
1649
|
+
|
|
1650
|
+
Ice::ObjectNotExistException::ObjectNotExistException(const char* file, int line) :
|
|
1651
|
+
RequestFailedException(file, line)
|
|
1652
|
+
{
|
|
1653
|
+
}
|
|
1654
|
+
|
|
1655
|
+
Ice::ObjectNotExistException::ObjectNotExistException(const char* file, int line, const Identity& id, const ::std::string& facet, const ::std::string& operation) :
|
|
1656
|
+
RequestFailedException(file, line, id, facet, operation)
|
|
1657
|
+
{
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1660
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1661
|
+
Ice::ObjectNotExistException::~ObjectNotExistException()
|
|
1662
|
+
{
|
|
1663
|
+
}
|
|
1664
|
+
#else
|
|
1665
|
+
Ice::ObjectNotExistException::~ObjectNotExistException() throw()
|
|
1666
|
+
{
|
|
1667
|
+
}
|
|
1668
|
+
#endif
|
|
1669
|
+
|
|
1670
|
+
::std::string
|
|
1671
|
+
Ice::ObjectNotExistException::ice_id() const
|
|
1672
|
+
{
|
|
1673
|
+
return "::Ice::ObjectNotExistException";
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
Ice::ObjectNotExistException*
|
|
1677
|
+
Ice::ObjectNotExistException::ice_clone() const
|
|
1678
|
+
{
|
|
1679
|
+
return new ObjectNotExistException(*this);
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
void
|
|
1683
|
+
Ice::ObjectNotExistException::ice_throw() const
|
|
1684
|
+
{
|
|
1685
|
+
throw *this;
|
|
1686
|
+
}
|
|
1687
|
+
|
|
1688
|
+
Ice::FacetNotExistException::FacetNotExistException(const char* file, int line) :
|
|
1689
|
+
RequestFailedException(file, line)
|
|
1690
|
+
{
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1693
|
+
Ice::FacetNotExistException::FacetNotExistException(const char* file, int line, const Identity& id, const ::std::string& facet, const ::std::string& operation) :
|
|
1694
|
+
RequestFailedException(file, line, id, facet, operation)
|
|
1695
|
+
{
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1699
|
+
Ice::FacetNotExistException::~FacetNotExistException()
|
|
1700
|
+
{
|
|
1701
|
+
}
|
|
1702
|
+
#else
|
|
1703
|
+
Ice::FacetNotExistException::~FacetNotExistException() throw()
|
|
1704
|
+
{
|
|
1705
|
+
}
|
|
1706
|
+
#endif
|
|
1707
|
+
|
|
1708
|
+
::std::string
|
|
1709
|
+
Ice::FacetNotExistException::ice_id() const
|
|
1710
|
+
{
|
|
1711
|
+
return "::Ice::FacetNotExistException";
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
Ice::FacetNotExistException*
|
|
1715
|
+
Ice::FacetNotExistException::ice_clone() const
|
|
1716
|
+
{
|
|
1717
|
+
return new FacetNotExistException(*this);
|
|
1718
|
+
}
|
|
1719
|
+
|
|
1720
|
+
void
|
|
1721
|
+
Ice::FacetNotExistException::ice_throw() const
|
|
1722
|
+
{
|
|
1723
|
+
throw *this;
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
Ice::OperationNotExistException::OperationNotExistException(const char* file, int line) :
|
|
1727
|
+
RequestFailedException(file, line)
|
|
1728
|
+
{
|
|
1729
|
+
}
|
|
1730
|
+
|
|
1731
|
+
Ice::OperationNotExistException::OperationNotExistException(const char* file, int line, const Identity& id, const ::std::string& facet, const ::std::string& operation) :
|
|
1732
|
+
RequestFailedException(file, line, id, facet, operation)
|
|
1733
|
+
{
|
|
1734
|
+
}
|
|
1735
|
+
|
|
1736
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1737
|
+
Ice::OperationNotExistException::~OperationNotExistException()
|
|
1738
|
+
{
|
|
1739
|
+
}
|
|
1740
|
+
#else
|
|
1741
|
+
Ice::OperationNotExistException::~OperationNotExistException() throw()
|
|
1742
|
+
{
|
|
1743
|
+
}
|
|
1744
|
+
#endif
|
|
1745
|
+
|
|
1746
|
+
::std::string
|
|
1747
|
+
Ice::OperationNotExistException::ice_id() const
|
|
1748
|
+
{
|
|
1749
|
+
return "::Ice::OperationNotExistException";
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1752
|
+
Ice::OperationNotExistException*
|
|
1753
|
+
Ice::OperationNotExistException::ice_clone() const
|
|
1754
|
+
{
|
|
1755
|
+
return new OperationNotExistException(*this);
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
void
|
|
1759
|
+
Ice::OperationNotExistException::ice_throw() const
|
|
1760
|
+
{
|
|
1761
|
+
throw *this;
|
|
1762
|
+
}
|
|
1763
|
+
|
|
1764
|
+
Ice::SyscallException::SyscallException(const char* file, int line) :
|
|
1765
|
+
LocalException(file, line),
|
|
1766
|
+
error(0)
|
|
1767
|
+
{
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
Ice::SyscallException::SyscallException(const char* file, int line, Int error) :
|
|
1771
|
+
LocalException(file, line),
|
|
1772
|
+
error(error)
|
|
1773
|
+
{
|
|
1774
|
+
}
|
|
1775
|
+
|
|
1776
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1777
|
+
Ice::SyscallException::~SyscallException()
|
|
1778
|
+
{
|
|
1779
|
+
}
|
|
1780
|
+
#else
|
|
1781
|
+
Ice::SyscallException::~SyscallException() throw()
|
|
1782
|
+
{
|
|
1783
|
+
}
|
|
1784
|
+
#endif
|
|
1785
|
+
|
|
1786
|
+
::std::string
|
|
1787
|
+
Ice::SyscallException::ice_id() const
|
|
1788
|
+
{
|
|
1789
|
+
return "::Ice::SyscallException";
|
|
1790
|
+
}
|
|
1791
|
+
|
|
1792
|
+
Ice::SyscallException*
|
|
1793
|
+
Ice::SyscallException::ice_clone() const
|
|
1794
|
+
{
|
|
1795
|
+
return new SyscallException(*this);
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
void
|
|
1799
|
+
Ice::SyscallException::ice_throw() const
|
|
1800
|
+
{
|
|
1801
|
+
throw *this;
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
Ice::SocketException::SocketException(const char* file, int line) :
|
|
1805
|
+
SyscallException(file, line)
|
|
1806
|
+
{
|
|
1807
|
+
}
|
|
1808
|
+
|
|
1809
|
+
Ice::SocketException::SocketException(const char* file, int line, Int error) :
|
|
1810
|
+
SyscallException(file, line, error)
|
|
1811
|
+
{
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1814
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1815
|
+
Ice::SocketException::~SocketException()
|
|
1816
|
+
{
|
|
1817
|
+
}
|
|
1818
|
+
#else
|
|
1819
|
+
Ice::SocketException::~SocketException() throw()
|
|
1820
|
+
{
|
|
1821
|
+
}
|
|
1822
|
+
#endif
|
|
1823
|
+
|
|
1824
|
+
::std::string
|
|
1825
|
+
Ice::SocketException::ice_id() const
|
|
1826
|
+
{
|
|
1827
|
+
return "::Ice::SocketException";
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
Ice::SocketException*
|
|
1831
|
+
Ice::SocketException::ice_clone() const
|
|
1832
|
+
{
|
|
1833
|
+
return new SocketException(*this);
|
|
1834
|
+
}
|
|
1835
|
+
|
|
1836
|
+
void
|
|
1837
|
+
Ice::SocketException::ice_throw() const
|
|
1838
|
+
{
|
|
1839
|
+
throw *this;
|
|
1840
|
+
}
|
|
1841
|
+
|
|
1842
|
+
Ice::CFNetworkException::CFNetworkException(const char* file, int line) :
|
|
1843
|
+
SocketException(file, line)
|
|
1844
|
+
{
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
Ice::CFNetworkException::CFNetworkException(const char* file, int line, Int error, const ::std::string& domain) :
|
|
1848
|
+
SocketException(file, line, error),
|
|
1849
|
+
domain(domain)
|
|
1850
|
+
{
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1854
|
+
Ice::CFNetworkException::~CFNetworkException()
|
|
1855
|
+
{
|
|
1856
|
+
}
|
|
1857
|
+
#else
|
|
1858
|
+
Ice::CFNetworkException::~CFNetworkException() throw()
|
|
1859
|
+
{
|
|
1860
|
+
}
|
|
1861
|
+
#endif
|
|
1862
|
+
|
|
1863
|
+
::std::string
|
|
1864
|
+
Ice::CFNetworkException::ice_id() const
|
|
1865
|
+
{
|
|
1866
|
+
return "::Ice::CFNetworkException";
|
|
1867
|
+
}
|
|
1868
|
+
|
|
1869
|
+
Ice::CFNetworkException*
|
|
1870
|
+
Ice::CFNetworkException::ice_clone() const
|
|
1871
|
+
{
|
|
1872
|
+
return new CFNetworkException(*this);
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1875
|
+
void
|
|
1876
|
+
Ice::CFNetworkException::ice_throw() const
|
|
1877
|
+
{
|
|
1878
|
+
throw *this;
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1881
|
+
Ice::FileException::FileException(const char* file, int line) :
|
|
1882
|
+
SyscallException(file, line)
|
|
1883
|
+
{
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
Ice::FileException::FileException(const char* file, int line, Int error, const ::std::string& path) :
|
|
1887
|
+
SyscallException(file, line, error),
|
|
1888
|
+
path(path)
|
|
1889
|
+
{
|
|
1890
|
+
}
|
|
1891
|
+
|
|
1892
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1893
|
+
Ice::FileException::~FileException()
|
|
1894
|
+
{
|
|
1895
|
+
}
|
|
1896
|
+
#else
|
|
1897
|
+
Ice::FileException::~FileException() throw()
|
|
1898
|
+
{
|
|
1899
|
+
}
|
|
1900
|
+
#endif
|
|
1901
|
+
|
|
1902
|
+
::std::string
|
|
1903
|
+
Ice::FileException::ice_id() const
|
|
1904
|
+
{
|
|
1905
|
+
return "::Ice::FileException";
|
|
1906
|
+
}
|
|
1907
|
+
|
|
1908
|
+
Ice::FileException*
|
|
1909
|
+
Ice::FileException::ice_clone() const
|
|
1910
|
+
{
|
|
1911
|
+
return new FileException(*this);
|
|
1912
|
+
}
|
|
1913
|
+
|
|
1914
|
+
void
|
|
1915
|
+
Ice::FileException::ice_throw() const
|
|
1916
|
+
{
|
|
1917
|
+
throw *this;
|
|
1918
|
+
}
|
|
1919
|
+
|
|
1920
|
+
Ice::ConnectFailedException::ConnectFailedException(const char* file, int line) :
|
|
1921
|
+
SocketException(file, line)
|
|
1922
|
+
{
|
|
1923
|
+
}
|
|
1924
|
+
|
|
1925
|
+
Ice::ConnectFailedException::ConnectFailedException(const char* file, int line, Int error) :
|
|
1926
|
+
SocketException(file, line, error)
|
|
1927
|
+
{
|
|
1928
|
+
}
|
|
1929
|
+
|
|
1930
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1931
|
+
Ice::ConnectFailedException::~ConnectFailedException()
|
|
1932
|
+
{
|
|
1933
|
+
}
|
|
1934
|
+
#else
|
|
1935
|
+
Ice::ConnectFailedException::~ConnectFailedException() throw()
|
|
1936
|
+
{
|
|
1937
|
+
}
|
|
1938
|
+
#endif
|
|
1939
|
+
|
|
1940
|
+
::std::string
|
|
1941
|
+
Ice::ConnectFailedException::ice_id() const
|
|
1942
|
+
{
|
|
1943
|
+
return "::Ice::ConnectFailedException";
|
|
1944
|
+
}
|
|
1945
|
+
|
|
1946
|
+
Ice::ConnectFailedException*
|
|
1947
|
+
Ice::ConnectFailedException::ice_clone() const
|
|
1948
|
+
{
|
|
1949
|
+
return new ConnectFailedException(*this);
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
void
|
|
1953
|
+
Ice::ConnectFailedException::ice_throw() const
|
|
1954
|
+
{
|
|
1955
|
+
throw *this;
|
|
1956
|
+
}
|
|
1957
|
+
|
|
1958
|
+
Ice::ConnectionRefusedException::ConnectionRefusedException(const char* file, int line) :
|
|
1959
|
+
ConnectFailedException(file, line)
|
|
1960
|
+
{
|
|
1961
|
+
}
|
|
1962
|
+
|
|
1963
|
+
Ice::ConnectionRefusedException::ConnectionRefusedException(const char* file, int line, Int error) :
|
|
1964
|
+
ConnectFailedException(file, line, error)
|
|
1965
|
+
{
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
#ifdef ICE_CPP11_COMPILER
|
|
1969
|
+
Ice::ConnectionRefusedException::~ConnectionRefusedException()
|
|
1970
|
+
{
|
|
1971
|
+
}
|
|
1972
|
+
#else
|
|
1973
|
+
Ice::ConnectionRefusedException::~ConnectionRefusedException() throw()
|
|
1974
|
+
{
|
|
1975
|
+
}
|
|
1976
|
+
#endif
|
|
1977
|
+
|
|
1978
|
+
::std::string
|
|
1979
|
+
Ice::ConnectionRefusedException::ice_id() const
|
|
1980
|
+
{
|
|
1981
|
+
return "::Ice::ConnectionRefusedException";
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
Ice::ConnectionRefusedException*
|
|
1985
|
+
Ice::ConnectionRefusedException::ice_clone() const
|
|
1986
|
+
{
|
|
1987
|
+
return new ConnectionRefusedException(*this);
|
|
1988
|
+
}
|
|
1989
|
+
|
|
1990
|
+
void
|
|
1991
|
+
Ice::ConnectionRefusedException::ice_throw() const
|
|
1992
|
+
{
|
|
1993
|
+
throw *this;
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1996
|
+
Ice::ConnectionLostException::ConnectionLostException(const char* file, int line) :
|
|
1997
|
+
SocketException(file, line)
|
|
1998
|
+
{
|
|
1999
|
+
}
|
|
2000
|
+
|
|
2001
|
+
Ice::ConnectionLostException::ConnectionLostException(const char* file, int line, Int error) :
|
|
2002
|
+
SocketException(file, line, error)
|
|
2003
|
+
{
|
|
2004
|
+
}
|
|
2005
|
+
|
|
2006
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2007
|
+
Ice::ConnectionLostException::~ConnectionLostException()
|
|
2008
|
+
{
|
|
2009
|
+
}
|
|
2010
|
+
#else
|
|
2011
|
+
Ice::ConnectionLostException::~ConnectionLostException() throw()
|
|
2012
|
+
{
|
|
2013
|
+
}
|
|
2014
|
+
#endif
|
|
2015
|
+
|
|
2016
|
+
::std::string
|
|
2017
|
+
Ice::ConnectionLostException::ice_id() const
|
|
2018
|
+
{
|
|
2019
|
+
return "::Ice::ConnectionLostException";
|
|
2020
|
+
}
|
|
2021
|
+
|
|
2022
|
+
Ice::ConnectionLostException*
|
|
2023
|
+
Ice::ConnectionLostException::ice_clone() const
|
|
2024
|
+
{
|
|
2025
|
+
return new ConnectionLostException(*this);
|
|
2026
|
+
}
|
|
2027
|
+
|
|
2028
|
+
void
|
|
2029
|
+
Ice::ConnectionLostException::ice_throw() const
|
|
2030
|
+
{
|
|
2031
|
+
throw *this;
|
|
2032
|
+
}
|
|
2033
|
+
|
|
2034
|
+
Ice::DNSException::DNSException(const char* file, int line) :
|
|
2035
|
+
LocalException(file, line),
|
|
2036
|
+
error(0)
|
|
2037
|
+
{
|
|
2038
|
+
}
|
|
2039
|
+
|
|
2040
|
+
Ice::DNSException::DNSException(const char* file, int line, Int error, const ::std::string& host) :
|
|
2041
|
+
LocalException(file, line),
|
|
2042
|
+
error(error),
|
|
2043
|
+
host(host)
|
|
2044
|
+
{
|
|
2045
|
+
}
|
|
2046
|
+
|
|
2047
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2048
|
+
Ice::DNSException::~DNSException()
|
|
2049
|
+
{
|
|
2050
|
+
}
|
|
2051
|
+
#else
|
|
2052
|
+
Ice::DNSException::~DNSException() throw()
|
|
2053
|
+
{
|
|
2054
|
+
}
|
|
2055
|
+
#endif
|
|
2056
|
+
|
|
2057
|
+
::std::string
|
|
2058
|
+
Ice::DNSException::ice_id() const
|
|
2059
|
+
{
|
|
2060
|
+
return "::Ice::DNSException";
|
|
2061
|
+
}
|
|
2062
|
+
|
|
2063
|
+
Ice::DNSException*
|
|
2064
|
+
Ice::DNSException::ice_clone() const
|
|
2065
|
+
{
|
|
2066
|
+
return new DNSException(*this);
|
|
2067
|
+
}
|
|
2068
|
+
|
|
2069
|
+
void
|
|
2070
|
+
Ice::DNSException::ice_throw() const
|
|
2071
|
+
{
|
|
2072
|
+
throw *this;
|
|
2073
|
+
}
|
|
2074
|
+
|
|
2075
|
+
Ice::OperationInterruptedException::OperationInterruptedException(const char* file, int line) :
|
|
2076
|
+
LocalException(file, line)
|
|
2077
|
+
{
|
|
2078
|
+
}
|
|
2079
|
+
|
|
2080
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2081
|
+
Ice::OperationInterruptedException::~OperationInterruptedException()
|
|
2082
|
+
{
|
|
2083
|
+
}
|
|
2084
|
+
#else
|
|
2085
|
+
Ice::OperationInterruptedException::~OperationInterruptedException() throw()
|
|
2086
|
+
{
|
|
2087
|
+
}
|
|
2088
|
+
#endif
|
|
2089
|
+
|
|
2090
|
+
::std::string
|
|
2091
|
+
Ice::OperationInterruptedException::ice_id() const
|
|
2092
|
+
{
|
|
2093
|
+
return "::Ice::OperationInterruptedException";
|
|
2094
|
+
}
|
|
2095
|
+
|
|
2096
|
+
Ice::OperationInterruptedException*
|
|
2097
|
+
Ice::OperationInterruptedException::ice_clone() const
|
|
2098
|
+
{
|
|
2099
|
+
return new OperationInterruptedException(*this);
|
|
2100
|
+
}
|
|
2101
|
+
|
|
2102
|
+
void
|
|
2103
|
+
Ice::OperationInterruptedException::ice_throw() const
|
|
2104
|
+
{
|
|
2105
|
+
throw *this;
|
|
2106
|
+
}
|
|
2107
|
+
|
|
2108
|
+
Ice::TimeoutException::TimeoutException(const char* file, int line) :
|
|
2109
|
+
LocalException(file, line)
|
|
2110
|
+
{
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2113
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2114
|
+
Ice::TimeoutException::~TimeoutException()
|
|
2115
|
+
{
|
|
2116
|
+
}
|
|
2117
|
+
#else
|
|
2118
|
+
Ice::TimeoutException::~TimeoutException() throw()
|
|
2119
|
+
{
|
|
2120
|
+
}
|
|
2121
|
+
#endif
|
|
2122
|
+
|
|
2123
|
+
::std::string
|
|
2124
|
+
Ice::TimeoutException::ice_id() const
|
|
2125
|
+
{
|
|
2126
|
+
return "::Ice::TimeoutException";
|
|
2127
|
+
}
|
|
2128
|
+
|
|
2129
|
+
Ice::TimeoutException*
|
|
2130
|
+
Ice::TimeoutException::ice_clone() const
|
|
2131
|
+
{
|
|
2132
|
+
return new TimeoutException(*this);
|
|
2133
|
+
}
|
|
2134
|
+
|
|
2135
|
+
void
|
|
2136
|
+
Ice::TimeoutException::ice_throw() const
|
|
2137
|
+
{
|
|
2138
|
+
throw *this;
|
|
2139
|
+
}
|
|
2140
|
+
|
|
2141
|
+
Ice::ConnectTimeoutException::ConnectTimeoutException(const char* file, int line) :
|
|
2142
|
+
TimeoutException(file, line)
|
|
2143
|
+
{
|
|
2144
|
+
}
|
|
2145
|
+
|
|
2146
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2147
|
+
Ice::ConnectTimeoutException::~ConnectTimeoutException()
|
|
2148
|
+
{
|
|
2149
|
+
}
|
|
2150
|
+
#else
|
|
2151
|
+
Ice::ConnectTimeoutException::~ConnectTimeoutException() throw()
|
|
2152
|
+
{
|
|
2153
|
+
}
|
|
2154
|
+
#endif
|
|
2155
|
+
|
|
2156
|
+
::std::string
|
|
2157
|
+
Ice::ConnectTimeoutException::ice_id() const
|
|
2158
|
+
{
|
|
2159
|
+
return "::Ice::ConnectTimeoutException";
|
|
2160
|
+
}
|
|
2161
|
+
|
|
2162
|
+
Ice::ConnectTimeoutException*
|
|
2163
|
+
Ice::ConnectTimeoutException::ice_clone() const
|
|
2164
|
+
{
|
|
2165
|
+
return new ConnectTimeoutException(*this);
|
|
2166
|
+
}
|
|
2167
|
+
|
|
2168
|
+
void
|
|
2169
|
+
Ice::ConnectTimeoutException::ice_throw() const
|
|
2170
|
+
{
|
|
2171
|
+
throw *this;
|
|
2172
|
+
}
|
|
2173
|
+
|
|
2174
|
+
Ice::CloseTimeoutException::CloseTimeoutException(const char* file, int line) :
|
|
2175
|
+
TimeoutException(file, line)
|
|
2176
|
+
{
|
|
2177
|
+
}
|
|
2178
|
+
|
|
2179
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2180
|
+
Ice::CloseTimeoutException::~CloseTimeoutException()
|
|
2181
|
+
{
|
|
2182
|
+
}
|
|
2183
|
+
#else
|
|
2184
|
+
Ice::CloseTimeoutException::~CloseTimeoutException() throw()
|
|
2185
|
+
{
|
|
2186
|
+
}
|
|
2187
|
+
#endif
|
|
2188
|
+
|
|
2189
|
+
::std::string
|
|
2190
|
+
Ice::CloseTimeoutException::ice_id() const
|
|
2191
|
+
{
|
|
2192
|
+
return "::Ice::CloseTimeoutException";
|
|
2193
|
+
}
|
|
2194
|
+
|
|
2195
|
+
Ice::CloseTimeoutException*
|
|
2196
|
+
Ice::CloseTimeoutException::ice_clone() const
|
|
2197
|
+
{
|
|
2198
|
+
return new CloseTimeoutException(*this);
|
|
2199
|
+
}
|
|
2200
|
+
|
|
2201
|
+
void
|
|
2202
|
+
Ice::CloseTimeoutException::ice_throw() const
|
|
2203
|
+
{
|
|
2204
|
+
throw *this;
|
|
2205
|
+
}
|
|
2206
|
+
|
|
2207
|
+
Ice::ConnectionTimeoutException::ConnectionTimeoutException(const char* file, int line) :
|
|
2208
|
+
TimeoutException(file, line)
|
|
2209
|
+
{
|
|
2210
|
+
}
|
|
2211
|
+
|
|
2212
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2213
|
+
Ice::ConnectionTimeoutException::~ConnectionTimeoutException()
|
|
2214
|
+
{
|
|
2215
|
+
}
|
|
2216
|
+
#else
|
|
2217
|
+
Ice::ConnectionTimeoutException::~ConnectionTimeoutException() throw()
|
|
2218
|
+
{
|
|
2219
|
+
}
|
|
2220
|
+
#endif
|
|
2221
|
+
|
|
2222
|
+
::std::string
|
|
2223
|
+
Ice::ConnectionTimeoutException::ice_id() const
|
|
2224
|
+
{
|
|
2225
|
+
return "::Ice::ConnectionTimeoutException";
|
|
2226
|
+
}
|
|
2227
|
+
|
|
2228
|
+
Ice::ConnectionTimeoutException*
|
|
2229
|
+
Ice::ConnectionTimeoutException::ice_clone() const
|
|
2230
|
+
{
|
|
2231
|
+
return new ConnectionTimeoutException(*this);
|
|
2232
|
+
}
|
|
2233
|
+
|
|
2234
|
+
void
|
|
2235
|
+
Ice::ConnectionTimeoutException::ice_throw() const
|
|
2236
|
+
{
|
|
2237
|
+
throw *this;
|
|
2238
|
+
}
|
|
2239
|
+
|
|
2240
|
+
Ice::InvocationTimeoutException::InvocationTimeoutException(const char* file, int line) :
|
|
2241
|
+
TimeoutException(file, line)
|
|
2242
|
+
{
|
|
2243
|
+
}
|
|
2244
|
+
|
|
2245
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2246
|
+
Ice::InvocationTimeoutException::~InvocationTimeoutException()
|
|
2247
|
+
{
|
|
2248
|
+
}
|
|
2249
|
+
#else
|
|
2250
|
+
Ice::InvocationTimeoutException::~InvocationTimeoutException() throw()
|
|
2251
|
+
{
|
|
2252
|
+
}
|
|
2253
|
+
#endif
|
|
2254
|
+
|
|
2255
|
+
::std::string
|
|
2256
|
+
Ice::InvocationTimeoutException::ice_id() const
|
|
2257
|
+
{
|
|
2258
|
+
return "::Ice::InvocationTimeoutException";
|
|
2259
|
+
}
|
|
2260
|
+
|
|
2261
|
+
Ice::InvocationTimeoutException*
|
|
2262
|
+
Ice::InvocationTimeoutException::ice_clone() const
|
|
2263
|
+
{
|
|
2264
|
+
return new InvocationTimeoutException(*this);
|
|
2265
|
+
}
|
|
2266
|
+
|
|
2267
|
+
void
|
|
2268
|
+
Ice::InvocationTimeoutException::ice_throw() const
|
|
2269
|
+
{
|
|
2270
|
+
throw *this;
|
|
2271
|
+
}
|
|
2272
|
+
|
|
2273
|
+
Ice::InvocationCanceledException::InvocationCanceledException(const char* file, int line) :
|
|
2274
|
+
LocalException(file, line)
|
|
2275
|
+
{
|
|
2276
|
+
}
|
|
2277
|
+
|
|
2278
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2279
|
+
Ice::InvocationCanceledException::~InvocationCanceledException()
|
|
2280
|
+
{
|
|
2281
|
+
}
|
|
2282
|
+
#else
|
|
2283
|
+
Ice::InvocationCanceledException::~InvocationCanceledException() throw()
|
|
2284
|
+
{
|
|
2285
|
+
}
|
|
2286
|
+
#endif
|
|
2287
|
+
|
|
2288
|
+
::std::string
|
|
2289
|
+
Ice::InvocationCanceledException::ice_id() const
|
|
2290
|
+
{
|
|
2291
|
+
return "::Ice::InvocationCanceledException";
|
|
2292
|
+
}
|
|
2293
|
+
|
|
2294
|
+
Ice::InvocationCanceledException*
|
|
2295
|
+
Ice::InvocationCanceledException::ice_clone() const
|
|
2296
|
+
{
|
|
2297
|
+
return new InvocationCanceledException(*this);
|
|
2298
|
+
}
|
|
2299
|
+
|
|
2300
|
+
void
|
|
2301
|
+
Ice::InvocationCanceledException::ice_throw() const
|
|
2302
|
+
{
|
|
2303
|
+
throw *this;
|
|
2304
|
+
}
|
|
2305
|
+
|
|
2306
|
+
Ice::ProtocolException::ProtocolException(const char* file, int line) :
|
|
2307
|
+
LocalException(file, line)
|
|
2308
|
+
{
|
|
2309
|
+
}
|
|
2310
|
+
|
|
2311
|
+
Ice::ProtocolException::ProtocolException(const char* file, int line, const ::std::string& reason) :
|
|
2312
|
+
LocalException(file, line),
|
|
2313
|
+
reason(reason)
|
|
2314
|
+
{
|
|
2315
|
+
}
|
|
2316
|
+
|
|
2317
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2318
|
+
Ice::ProtocolException::~ProtocolException()
|
|
2319
|
+
{
|
|
2320
|
+
}
|
|
2321
|
+
#else
|
|
2322
|
+
Ice::ProtocolException::~ProtocolException() throw()
|
|
2323
|
+
{
|
|
2324
|
+
}
|
|
2325
|
+
#endif
|
|
2326
|
+
|
|
2327
|
+
::std::string
|
|
2328
|
+
Ice::ProtocolException::ice_id() const
|
|
2329
|
+
{
|
|
2330
|
+
return "::Ice::ProtocolException";
|
|
2331
|
+
}
|
|
2332
|
+
|
|
2333
|
+
Ice::ProtocolException*
|
|
2334
|
+
Ice::ProtocolException::ice_clone() const
|
|
2335
|
+
{
|
|
2336
|
+
return new ProtocolException(*this);
|
|
2337
|
+
}
|
|
2338
|
+
|
|
2339
|
+
void
|
|
2340
|
+
Ice::ProtocolException::ice_throw() const
|
|
2341
|
+
{
|
|
2342
|
+
throw *this;
|
|
2343
|
+
}
|
|
2344
|
+
|
|
2345
|
+
Ice::BadMagicException::BadMagicException(const char* file, int line) :
|
|
2346
|
+
ProtocolException(file, line)
|
|
2347
|
+
{
|
|
2348
|
+
}
|
|
2349
|
+
|
|
2350
|
+
Ice::BadMagicException::BadMagicException(const char* file, int line, const ::std::string& reason, const ByteSeq& badMagic) :
|
|
2351
|
+
ProtocolException(file, line, reason),
|
|
2352
|
+
badMagic(badMagic)
|
|
2353
|
+
{
|
|
2354
|
+
}
|
|
2355
|
+
|
|
2356
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2357
|
+
Ice::BadMagicException::~BadMagicException()
|
|
2358
|
+
{
|
|
2359
|
+
}
|
|
2360
|
+
#else
|
|
2361
|
+
Ice::BadMagicException::~BadMagicException() throw()
|
|
2362
|
+
{
|
|
2363
|
+
}
|
|
2364
|
+
#endif
|
|
2365
|
+
|
|
2366
|
+
::std::string
|
|
2367
|
+
Ice::BadMagicException::ice_id() const
|
|
2368
|
+
{
|
|
2369
|
+
return "::Ice::BadMagicException";
|
|
2370
|
+
}
|
|
2371
|
+
|
|
2372
|
+
Ice::BadMagicException*
|
|
2373
|
+
Ice::BadMagicException::ice_clone() const
|
|
2374
|
+
{
|
|
2375
|
+
return new BadMagicException(*this);
|
|
2376
|
+
}
|
|
2377
|
+
|
|
2378
|
+
void
|
|
2379
|
+
Ice::BadMagicException::ice_throw() const
|
|
2380
|
+
{
|
|
2381
|
+
throw *this;
|
|
2382
|
+
}
|
|
2383
|
+
|
|
2384
|
+
Ice::UnsupportedProtocolException::UnsupportedProtocolException(const char* file, int line) :
|
|
2385
|
+
ProtocolException(file, line)
|
|
2386
|
+
{
|
|
2387
|
+
}
|
|
2388
|
+
|
|
2389
|
+
Ice::UnsupportedProtocolException::UnsupportedProtocolException(const char* file, int line, const ::std::string& reason, const ProtocolVersion& bad, const ProtocolVersion& supported) :
|
|
2390
|
+
ProtocolException(file, line, reason),
|
|
2391
|
+
bad(bad),
|
|
2392
|
+
supported(supported)
|
|
2393
|
+
{
|
|
2394
|
+
}
|
|
2395
|
+
|
|
2396
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2397
|
+
Ice::UnsupportedProtocolException::~UnsupportedProtocolException()
|
|
2398
|
+
{
|
|
2399
|
+
}
|
|
2400
|
+
#else
|
|
2401
|
+
Ice::UnsupportedProtocolException::~UnsupportedProtocolException() throw()
|
|
2402
|
+
{
|
|
2403
|
+
}
|
|
2404
|
+
#endif
|
|
2405
|
+
|
|
2406
|
+
::std::string
|
|
2407
|
+
Ice::UnsupportedProtocolException::ice_id() const
|
|
2408
|
+
{
|
|
2409
|
+
return "::Ice::UnsupportedProtocolException";
|
|
2410
|
+
}
|
|
2411
|
+
|
|
2412
|
+
Ice::UnsupportedProtocolException*
|
|
2413
|
+
Ice::UnsupportedProtocolException::ice_clone() const
|
|
2414
|
+
{
|
|
2415
|
+
return new UnsupportedProtocolException(*this);
|
|
2416
|
+
}
|
|
2417
|
+
|
|
2418
|
+
void
|
|
2419
|
+
Ice::UnsupportedProtocolException::ice_throw() const
|
|
2420
|
+
{
|
|
2421
|
+
throw *this;
|
|
2422
|
+
}
|
|
2423
|
+
|
|
2424
|
+
Ice::UnsupportedEncodingException::UnsupportedEncodingException(const char* file, int line) :
|
|
2425
|
+
ProtocolException(file, line)
|
|
2426
|
+
{
|
|
2427
|
+
}
|
|
2428
|
+
|
|
2429
|
+
Ice::UnsupportedEncodingException::UnsupportedEncodingException(const char* file, int line, const ::std::string& reason, const EncodingVersion& bad, const EncodingVersion& supported) :
|
|
2430
|
+
ProtocolException(file, line, reason),
|
|
2431
|
+
bad(bad),
|
|
2432
|
+
supported(supported)
|
|
2433
|
+
{
|
|
2434
|
+
}
|
|
2435
|
+
|
|
2436
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2437
|
+
Ice::UnsupportedEncodingException::~UnsupportedEncodingException()
|
|
2438
|
+
{
|
|
2439
|
+
}
|
|
2440
|
+
#else
|
|
2441
|
+
Ice::UnsupportedEncodingException::~UnsupportedEncodingException() throw()
|
|
2442
|
+
{
|
|
2443
|
+
}
|
|
2444
|
+
#endif
|
|
2445
|
+
|
|
2446
|
+
::std::string
|
|
2447
|
+
Ice::UnsupportedEncodingException::ice_id() const
|
|
2448
|
+
{
|
|
2449
|
+
return "::Ice::UnsupportedEncodingException";
|
|
2450
|
+
}
|
|
2451
|
+
|
|
2452
|
+
Ice::UnsupportedEncodingException*
|
|
2453
|
+
Ice::UnsupportedEncodingException::ice_clone() const
|
|
2454
|
+
{
|
|
2455
|
+
return new UnsupportedEncodingException(*this);
|
|
2456
|
+
}
|
|
2457
|
+
|
|
2458
|
+
void
|
|
2459
|
+
Ice::UnsupportedEncodingException::ice_throw() const
|
|
2460
|
+
{
|
|
2461
|
+
throw *this;
|
|
2462
|
+
}
|
|
2463
|
+
|
|
2464
|
+
Ice::UnknownMessageException::UnknownMessageException(const char* file, int line) :
|
|
2465
|
+
ProtocolException(file, line)
|
|
2466
|
+
{
|
|
2467
|
+
}
|
|
2468
|
+
|
|
2469
|
+
Ice::UnknownMessageException::UnknownMessageException(const char* file, int line, const ::std::string& reason) :
|
|
2470
|
+
ProtocolException(file, line, reason)
|
|
2471
|
+
{
|
|
2472
|
+
}
|
|
2473
|
+
|
|
2474
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2475
|
+
Ice::UnknownMessageException::~UnknownMessageException()
|
|
2476
|
+
{
|
|
2477
|
+
}
|
|
2478
|
+
#else
|
|
2479
|
+
Ice::UnknownMessageException::~UnknownMessageException() throw()
|
|
2480
|
+
{
|
|
2481
|
+
}
|
|
2482
|
+
#endif
|
|
2483
|
+
|
|
2484
|
+
::std::string
|
|
2485
|
+
Ice::UnknownMessageException::ice_id() const
|
|
2486
|
+
{
|
|
2487
|
+
return "::Ice::UnknownMessageException";
|
|
2488
|
+
}
|
|
2489
|
+
|
|
2490
|
+
Ice::UnknownMessageException*
|
|
2491
|
+
Ice::UnknownMessageException::ice_clone() const
|
|
2492
|
+
{
|
|
2493
|
+
return new UnknownMessageException(*this);
|
|
2494
|
+
}
|
|
2495
|
+
|
|
2496
|
+
void
|
|
2497
|
+
Ice::UnknownMessageException::ice_throw() const
|
|
2498
|
+
{
|
|
2499
|
+
throw *this;
|
|
2500
|
+
}
|
|
2501
|
+
|
|
2502
|
+
Ice::ConnectionNotValidatedException::ConnectionNotValidatedException(const char* file, int line) :
|
|
2503
|
+
ProtocolException(file, line)
|
|
2504
|
+
{
|
|
2505
|
+
}
|
|
2506
|
+
|
|
2507
|
+
Ice::ConnectionNotValidatedException::ConnectionNotValidatedException(const char* file, int line, const ::std::string& reason) :
|
|
2508
|
+
ProtocolException(file, line, reason)
|
|
2509
|
+
{
|
|
2510
|
+
}
|
|
2511
|
+
|
|
2512
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2513
|
+
Ice::ConnectionNotValidatedException::~ConnectionNotValidatedException()
|
|
2514
|
+
{
|
|
2515
|
+
}
|
|
2516
|
+
#else
|
|
2517
|
+
Ice::ConnectionNotValidatedException::~ConnectionNotValidatedException() throw()
|
|
2518
|
+
{
|
|
2519
|
+
}
|
|
2520
|
+
#endif
|
|
2521
|
+
|
|
2522
|
+
::std::string
|
|
2523
|
+
Ice::ConnectionNotValidatedException::ice_id() const
|
|
2524
|
+
{
|
|
2525
|
+
return "::Ice::ConnectionNotValidatedException";
|
|
2526
|
+
}
|
|
2527
|
+
|
|
2528
|
+
Ice::ConnectionNotValidatedException*
|
|
2529
|
+
Ice::ConnectionNotValidatedException::ice_clone() const
|
|
2530
|
+
{
|
|
2531
|
+
return new ConnectionNotValidatedException(*this);
|
|
2532
|
+
}
|
|
2533
|
+
|
|
2534
|
+
void
|
|
2535
|
+
Ice::ConnectionNotValidatedException::ice_throw() const
|
|
2536
|
+
{
|
|
2537
|
+
throw *this;
|
|
2538
|
+
}
|
|
2539
|
+
|
|
2540
|
+
Ice::UnknownRequestIdException::UnknownRequestIdException(const char* file, int line) :
|
|
2541
|
+
ProtocolException(file, line)
|
|
2542
|
+
{
|
|
2543
|
+
}
|
|
2544
|
+
|
|
2545
|
+
Ice::UnknownRequestIdException::UnknownRequestIdException(const char* file, int line, const ::std::string& reason) :
|
|
2546
|
+
ProtocolException(file, line, reason)
|
|
2547
|
+
{
|
|
2548
|
+
}
|
|
2549
|
+
|
|
2550
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2551
|
+
Ice::UnknownRequestIdException::~UnknownRequestIdException()
|
|
2552
|
+
{
|
|
2553
|
+
}
|
|
2554
|
+
#else
|
|
2555
|
+
Ice::UnknownRequestIdException::~UnknownRequestIdException() throw()
|
|
2556
|
+
{
|
|
2557
|
+
}
|
|
2558
|
+
#endif
|
|
2559
|
+
|
|
2560
|
+
::std::string
|
|
2561
|
+
Ice::UnknownRequestIdException::ice_id() const
|
|
2562
|
+
{
|
|
2563
|
+
return "::Ice::UnknownRequestIdException";
|
|
2564
|
+
}
|
|
2565
|
+
|
|
2566
|
+
Ice::UnknownRequestIdException*
|
|
2567
|
+
Ice::UnknownRequestIdException::ice_clone() const
|
|
2568
|
+
{
|
|
2569
|
+
return new UnknownRequestIdException(*this);
|
|
2570
|
+
}
|
|
2571
|
+
|
|
2572
|
+
void
|
|
2573
|
+
Ice::UnknownRequestIdException::ice_throw() const
|
|
2574
|
+
{
|
|
2575
|
+
throw *this;
|
|
2576
|
+
}
|
|
2577
|
+
|
|
2578
|
+
Ice::UnknownReplyStatusException::UnknownReplyStatusException(const char* file, int line) :
|
|
2579
|
+
ProtocolException(file, line)
|
|
2580
|
+
{
|
|
2581
|
+
}
|
|
2582
|
+
|
|
2583
|
+
Ice::UnknownReplyStatusException::UnknownReplyStatusException(const char* file, int line, const ::std::string& reason) :
|
|
2584
|
+
ProtocolException(file, line, reason)
|
|
2585
|
+
{
|
|
2586
|
+
}
|
|
2587
|
+
|
|
2588
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2589
|
+
Ice::UnknownReplyStatusException::~UnknownReplyStatusException()
|
|
2590
|
+
{
|
|
2591
|
+
}
|
|
2592
|
+
#else
|
|
2593
|
+
Ice::UnknownReplyStatusException::~UnknownReplyStatusException() throw()
|
|
2594
|
+
{
|
|
2595
|
+
}
|
|
2596
|
+
#endif
|
|
2597
|
+
|
|
2598
|
+
::std::string
|
|
2599
|
+
Ice::UnknownReplyStatusException::ice_id() const
|
|
2600
|
+
{
|
|
2601
|
+
return "::Ice::UnknownReplyStatusException";
|
|
2602
|
+
}
|
|
2603
|
+
|
|
2604
|
+
Ice::UnknownReplyStatusException*
|
|
2605
|
+
Ice::UnknownReplyStatusException::ice_clone() const
|
|
2606
|
+
{
|
|
2607
|
+
return new UnknownReplyStatusException(*this);
|
|
2608
|
+
}
|
|
2609
|
+
|
|
2610
|
+
void
|
|
2611
|
+
Ice::UnknownReplyStatusException::ice_throw() const
|
|
2612
|
+
{
|
|
2613
|
+
throw *this;
|
|
2614
|
+
}
|
|
2615
|
+
|
|
2616
|
+
Ice::CloseConnectionException::CloseConnectionException(const char* file, int line) :
|
|
2617
|
+
ProtocolException(file, line)
|
|
2618
|
+
{
|
|
2619
|
+
}
|
|
2620
|
+
|
|
2621
|
+
Ice::CloseConnectionException::CloseConnectionException(const char* file, int line, const ::std::string& reason) :
|
|
2622
|
+
ProtocolException(file, line, reason)
|
|
2623
|
+
{
|
|
2624
|
+
}
|
|
2625
|
+
|
|
2626
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2627
|
+
Ice::CloseConnectionException::~CloseConnectionException()
|
|
2628
|
+
{
|
|
2629
|
+
}
|
|
2630
|
+
#else
|
|
2631
|
+
Ice::CloseConnectionException::~CloseConnectionException() throw()
|
|
2632
|
+
{
|
|
2633
|
+
}
|
|
2634
|
+
#endif
|
|
2635
|
+
|
|
2636
|
+
::std::string
|
|
2637
|
+
Ice::CloseConnectionException::ice_id() const
|
|
2638
|
+
{
|
|
2639
|
+
return "::Ice::CloseConnectionException";
|
|
2640
|
+
}
|
|
2641
|
+
|
|
2642
|
+
Ice::CloseConnectionException*
|
|
2643
|
+
Ice::CloseConnectionException::ice_clone() const
|
|
2644
|
+
{
|
|
2645
|
+
return new CloseConnectionException(*this);
|
|
2646
|
+
}
|
|
2647
|
+
|
|
2648
|
+
void
|
|
2649
|
+
Ice::CloseConnectionException::ice_throw() const
|
|
2650
|
+
{
|
|
2651
|
+
throw *this;
|
|
2652
|
+
}
|
|
2653
|
+
|
|
2654
|
+
Ice::ConnectionManuallyClosedException::ConnectionManuallyClosedException(const char* file, int line) :
|
|
2655
|
+
LocalException(file, line)
|
|
2656
|
+
{
|
|
2657
|
+
}
|
|
2658
|
+
|
|
2659
|
+
Ice::ConnectionManuallyClosedException::ConnectionManuallyClosedException(const char* file, int line, bool graceful) :
|
|
2660
|
+
LocalException(file, line),
|
|
2661
|
+
graceful(graceful)
|
|
2662
|
+
{
|
|
2663
|
+
}
|
|
2664
|
+
|
|
2665
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2666
|
+
Ice::ConnectionManuallyClosedException::~ConnectionManuallyClosedException()
|
|
2667
|
+
{
|
|
2668
|
+
}
|
|
2669
|
+
#else
|
|
2670
|
+
Ice::ConnectionManuallyClosedException::~ConnectionManuallyClosedException() throw()
|
|
2671
|
+
{
|
|
2672
|
+
}
|
|
2673
|
+
#endif
|
|
2674
|
+
|
|
2675
|
+
::std::string
|
|
2676
|
+
Ice::ConnectionManuallyClosedException::ice_id() const
|
|
2677
|
+
{
|
|
2678
|
+
return "::Ice::ConnectionManuallyClosedException";
|
|
2679
|
+
}
|
|
2680
|
+
|
|
2681
|
+
Ice::ConnectionManuallyClosedException*
|
|
2682
|
+
Ice::ConnectionManuallyClosedException::ice_clone() const
|
|
2683
|
+
{
|
|
2684
|
+
return new ConnectionManuallyClosedException(*this);
|
|
2685
|
+
}
|
|
2686
|
+
|
|
2687
|
+
void
|
|
2688
|
+
Ice::ConnectionManuallyClosedException::ice_throw() const
|
|
2689
|
+
{
|
|
2690
|
+
throw *this;
|
|
2691
|
+
}
|
|
2692
|
+
|
|
2693
|
+
Ice::IllegalMessageSizeException::IllegalMessageSizeException(const char* file, int line) :
|
|
2694
|
+
ProtocolException(file, line)
|
|
2695
|
+
{
|
|
2696
|
+
}
|
|
2697
|
+
|
|
2698
|
+
Ice::IllegalMessageSizeException::IllegalMessageSizeException(const char* file, int line, const ::std::string& reason) :
|
|
2699
|
+
ProtocolException(file, line, reason)
|
|
2700
|
+
{
|
|
2701
|
+
}
|
|
2702
|
+
|
|
2703
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2704
|
+
Ice::IllegalMessageSizeException::~IllegalMessageSizeException()
|
|
2705
|
+
{
|
|
2706
|
+
}
|
|
2707
|
+
#else
|
|
2708
|
+
Ice::IllegalMessageSizeException::~IllegalMessageSizeException() throw()
|
|
2709
|
+
{
|
|
2710
|
+
}
|
|
2711
|
+
#endif
|
|
2712
|
+
|
|
2713
|
+
::std::string
|
|
2714
|
+
Ice::IllegalMessageSizeException::ice_id() const
|
|
2715
|
+
{
|
|
2716
|
+
return "::Ice::IllegalMessageSizeException";
|
|
2717
|
+
}
|
|
2718
|
+
|
|
2719
|
+
Ice::IllegalMessageSizeException*
|
|
2720
|
+
Ice::IllegalMessageSizeException::ice_clone() const
|
|
2721
|
+
{
|
|
2722
|
+
return new IllegalMessageSizeException(*this);
|
|
2723
|
+
}
|
|
2724
|
+
|
|
2725
|
+
void
|
|
2726
|
+
Ice::IllegalMessageSizeException::ice_throw() const
|
|
2727
|
+
{
|
|
2728
|
+
throw *this;
|
|
2729
|
+
}
|
|
2730
|
+
|
|
2731
|
+
Ice::CompressionException::CompressionException(const char* file, int line) :
|
|
2732
|
+
ProtocolException(file, line)
|
|
2733
|
+
{
|
|
2734
|
+
}
|
|
2735
|
+
|
|
2736
|
+
Ice::CompressionException::CompressionException(const char* file, int line, const ::std::string& reason) :
|
|
2737
|
+
ProtocolException(file, line, reason)
|
|
2738
|
+
{
|
|
2739
|
+
}
|
|
2740
|
+
|
|
2741
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2742
|
+
Ice::CompressionException::~CompressionException()
|
|
2743
|
+
{
|
|
2744
|
+
}
|
|
2745
|
+
#else
|
|
2746
|
+
Ice::CompressionException::~CompressionException() throw()
|
|
2747
|
+
{
|
|
2748
|
+
}
|
|
2749
|
+
#endif
|
|
2750
|
+
|
|
2751
|
+
::std::string
|
|
2752
|
+
Ice::CompressionException::ice_id() const
|
|
2753
|
+
{
|
|
2754
|
+
return "::Ice::CompressionException";
|
|
2755
|
+
}
|
|
2756
|
+
|
|
2757
|
+
Ice::CompressionException*
|
|
2758
|
+
Ice::CompressionException::ice_clone() const
|
|
2759
|
+
{
|
|
2760
|
+
return new CompressionException(*this);
|
|
2761
|
+
}
|
|
2762
|
+
|
|
2763
|
+
void
|
|
2764
|
+
Ice::CompressionException::ice_throw() const
|
|
2765
|
+
{
|
|
2766
|
+
throw *this;
|
|
2767
|
+
}
|
|
2768
|
+
|
|
2769
|
+
Ice::DatagramLimitException::DatagramLimitException(const char* file, int line) :
|
|
2770
|
+
ProtocolException(file, line)
|
|
2771
|
+
{
|
|
2772
|
+
}
|
|
2773
|
+
|
|
2774
|
+
Ice::DatagramLimitException::DatagramLimitException(const char* file, int line, const ::std::string& reason) :
|
|
2775
|
+
ProtocolException(file, line, reason)
|
|
2776
|
+
{
|
|
2777
|
+
}
|
|
2778
|
+
|
|
2779
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2780
|
+
Ice::DatagramLimitException::~DatagramLimitException()
|
|
2781
|
+
{
|
|
2782
|
+
}
|
|
2783
|
+
#else
|
|
2784
|
+
Ice::DatagramLimitException::~DatagramLimitException() throw()
|
|
2785
|
+
{
|
|
2786
|
+
}
|
|
2787
|
+
#endif
|
|
2788
|
+
|
|
2789
|
+
::std::string
|
|
2790
|
+
Ice::DatagramLimitException::ice_id() const
|
|
2791
|
+
{
|
|
2792
|
+
return "::Ice::DatagramLimitException";
|
|
2793
|
+
}
|
|
2794
|
+
|
|
2795
|
+
Ice::DatagramLimitException*
|
|
2796
|
+
Ice::DatagramLimitException::ice_clone() const
|
|
2797
|
+
{
|
|
2798
|
+
return new DatagramLimitException(*this);
|
|
2799
|
+
}
|
|
2800
|
+
|
|
2801
|
+
void
|
|
2802
|
+
Ice::DatagramLimitException::ice_throw() const
|
|
2803
|
+
{
|
|
2804
|
+
throw *this;
|
|
2805
|
+
}
|
|
2806
|
+
|
|
2807
|
+
Ice::MarshalException::MarshalException(const char* file, int line) :
|
|
2808
|
+
ProtocolException(file, line)
|
|
2809
|
+
{
|
|
2810
|
+
}
|
|
2811
|
+
|
|
2812
|
+
Ice::MarshalException::MarshalException(const char* file, int line, const ::std::string& reason) :
|
|
2813
|
+
ProtocolException(file, line, reason)
|
|
2814
|
+
{
|
|
2815
|
+
}
|
|
2816
|
+
|
|
2817
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2818
|
+
Ice::MarshalException::~MarshalException()
|
|
2819
|
+
{
|
|
2820
|
+
}
|
|
2821
|
+
#else
|
|
2822
|
+
Ice::MarshalException::~MarshalException() throw()
|
|
2823
|
+
{
|
|
2824
|
+
}
|
|
2825
|
+
#endif
|
|
2826
|
+
|
|
2827
|
+
::std::string
|
|
2828
|
+
Ice::MarshalException::ice_id() const
|
|
2829
|
+
{
|
|
2830
|
+
return "::Ice::MarshalException";
|
|
2831
|
+
}
|
|
2832
|
+
|
|
2833
|
+
Ice::MarshalException*
|
|
2834
|
+
Ice::MarshalException::ice_clone() const
|
|
2835
|
+
{
|
|
2836
|
+
return new MarshalException(*this);
|
|
2837
|
+
}
|
|
2838
|
+
|
|
2839
|
+
void
|
|
2840
|
+
Ice::MarshalException::ice_throw() const
|
|
2841
|
+
{
|
|
2842
|
+
throw *this;
|
|
2843
|
+
}
|
|
2844
|
+
|
|
2845
|
+
Ice::ProxyUnmarshalException::ProxyUnmarshalException(const char* file, int line) :
|
|
2846
|
+
MarshalException(file, line)
|
|
2847
|
+
{
|
|
2848
|
+
}
|
|
2849
|
+
|
|
2850
|
+
Ice::ProxyUnmarshalException::ProxyUnmarshalException(const char* file, int line, const ::std::string& reason) :
|
|
2851
|
+
MarshalException(file, line, reason)
|
|
2852
|
+
{
|
|
2853
|
+
}
|
|
2854
|
+
|
|
2855
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2856
|
+
Ice::ProxyUnmarshalException::~ProxyUnmarshalException()
|
|
2857
|
+
{
|
|
2858
|
+
}
|
|
2859
|
+
#else
|
|
2860
|
+
Ice::ProxyUnmarshalException::~ProxyUnmarshalException() throw()
|
|
2861
|
+
{
|
|
2862
|
+
}
|
|
2863
|
+
#endif
|
|
2864
|
+
|
|
2865
|
+
::std::string
|
|
2866
|
+
Ice::ProxyUnmarshalException::ice_id() const
|
|
2867
|
+
{
|
|
2868
|
+
return "::Ice::ProxyUnmarshalException";
|
|
2869
|
+
}
|
|
2870
|
+
|
|
2871
|
+
Ice::ProxyUnmarshalException*
|
|
2872
|
+
Ice::ProxyUnmarshalException::ice_clone() const
|
|
2873
|
+
{
|
|
2874
|
+
return new ProxyUnmarshalException(*this);
|
|
2875
|
+
}
|
|
2876
|
+
|
|
2877
|
+
void
|
|
2878
|
+
Ice::ProxyUnmarshalException::ice_throw() const
|
|
2879
|
+
{
|
|
2880
|
+
throw *this;
|
|
2881
|
+
}
|
|
2882
|
+
|
|
2883
|
+
Ice::UnmarshalOutOfBoundsException::UnmarshalOutOfBoundsException(const char* file, int line) :
|
|
2884
|
+
MarshalException(file, line)
|
|
2885
|
+
{
|
|
2886
|
+
}
|
|
2887
|
+
|
|
2888
|
+
Ice::UnmarshalOutOfBoundsException::UnmarshalOutOfBoundsException(const char* file, int line, const ::std::string& reason) :
|
|
2889
|
+
MarshalException(file, line, reason)
|
|
2890
|
+
{
|
|
2891
|
+
}
|
|
2892
|
+
|
|
2893
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2894
|
+
Ice::UnmarshalOutOfBoundsException::~UnmarshalOutOfBoundsException()
|
|
2895
|
+
{
|
|
2896
|
+
}
|
|
2897
|
+
#else
|
|
2898
|
+
Ice::UnmarshalOutOfBoundsException::~UnmarshalOutOfBoundsException() throw()
|
|
2899
|
+
{
|
|
2900
|
+
}
|
|
2901
|
+
#endif
|
|
2902
|
+
|
|
2903
|
+
::std::string
|
|
2904
|
+
Ice::UnmarshalOutOfBoundsException::ice_id() const
|
|
2905
|
+
{
|
|
2906
|
+
return "::Ice::UnmarshalOutOfBoundsException";
|
|
2907
|
+
}
|
|
2908
|
+
|
|
2909
|
+
Ice::UnmarshalOutOfBoundsException*
|
|
2910
|
+
Ice::UnmarshalOutOfBoundsException::ice_clone() const
|
|
2911
|
+
{
|
|
2912
|
+
return new UnmarshalOutOfBoundsException(*this);
|
|
2913
|
+
}
|
|
2914
|
+
|
|
2915
|
+
void
|
|
2916
|
+
Ice::UnmarshalOutOfBoundsException::ice_throw() const
|
|
2917
|
+
{
|
|
2918
|
+
throw *this;
|
|
2919
|
+
}
|
|
2920
|
+
|
|
2921
|
+
Ice::NoValueFactoryException::NoValueFactoryException(const char* file, int line) :
|
|
2922
|
+
MarshalException(file, line)
|
|
2923
|
+
{
|
|
2924
|
+
}
|
|
2925
|
+
|
|
2926
|
+
Ice::NoValueFactoryException::NoValueFactoryException(const char* file, int line, const ::std::string& reason, const ::std::string& type) :
|
|
2927
|
+
MarshalException(file, line, reason),
|
|
2928
|
+
type(type)
|
|
2929
|
+
{
|
|
2930
|
+
}
|
|
2931
|
+
|
|
2932
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2933
|
+
Ice::NoValueFactoryException::~NoValueFactoryException()
|
|
2934
|
+
{
|
|
2935
|
+
}
|
|
2936
|
+
#else
|
|
2937
|
+
Ice::NoValueFactoryException::~NoValueFactoryException() throw()
|
|
2938
|
+
{
|
|
2939
|
+
}
|
|
2940
|
+
#endif
|
|
2941
|
+
|
|
2942
|
+
::std::string
|
|
2943
|
+
Ice::NoValueFactoryException::ice_id() const
|
|
2944
|
+
{
|
|
2945
|
+
return "::Ice::NoValueFactoryException";
|
|
2946
|
+
}
|
|
2947
|
+
|
|
2948
|
+
Ice::NoValueFactoryException*
|
|
2949
|
+
Ice::NoValueFactoryException::ice_clone() const
|
|
2950
|
+
{
|
|
2951
|
+
return new NoValueFactoryException(*this);
|
|
2952
|
+
}
|
|
2953
|
+
|
|
2954
|
+
void
|
|
2955
|
+
Ice::NoValueFactoryException::ice_throw() const
|
|
2956
|
+
{
|
|
2957
|
+
throw *this;
|
|
2958
|
+
}
|
|
2959
|
+
|
|
2960
|
+
Ice::UnexpectedObjectException::UnexpectedObjectException(const char* file, int line) :
|
|
2961
|
+
MarshalException(file, line)
|
|
2962
|
+
{
|
|
2963
|
+
}
|
|
2964
|
+
|
|
2965
|
+
Ice::UnexpectedObjectException::UnexpectedObjectException(const char* file, int line, const ::std::string& reason, const ::std::string& type, const ::std::string& expectedType) :
|
|
2966
|
+
MarshalException(file, line, reason),
|
|
2967
|
+
type(type),
|
|
2968
|
+
expectedType(expectedType)
|
|
2969
|
+
{
|
|
2970
|
+
}
|
|
2971
|
+
|
|
2972
|
+
#ifdef ICE_CPP11_COMPILER
|
|
2973
|
+
Ice::UnexpectedObjectException::~UnexpectedObjectException()
|
|
2974
|
+
{
|
|
2975
|
+
}
|
|
2976
|
+
#else
|
|
2977
|
+
Ice::UnexpectedObjectException::~UnexpectedObjectException() throw()
|
|
2978
|
+
{
|
|
2979
|
+
}
|
|
2980
|
+
#endif
|
|
2981
|
+
|
|
2982
|
+
::std::string
|
|
2983
|
+
Ice::UnexpectedObjectException::ice_id() const
|
|
2984
|
+
{
|
|
2985
|
+
return "::Ice::UnexpectedObjectException";
|
|
2986
|
+
}
|
|
2987
|
+
|
|
2988
|
+
Ice::UnexpectedObjectException*
|
|
2989
|
+
Ice::UnexpectedObjectException::ice_clone() const
|
|
2990
|
+
{
|
|
2991
|
+
return new UnexpectedObjectException(*this);
|
|
2992
|
+
}
|
|
2993
|
+
|
|
2994
|
+
void
|
|
2995
|
+
Ice::UnexpectedObjectException::ice_throw() const
|
|
2996
|
+
{
|
|
2997
|
+
throw *this;
|
|
2998
|
+
}
|
|
2999
|
+
|
|
3000
|
+
Ice::MemoryLimitException::MemoryLimitException(const char* file, int line) :
|
|
3001
|
+
MarshalException(file, line)
|
|
3002
|
+
{
|
|
3003
|
+
}
|
|
3004
|
+
|
|
3005
|
+
Ice::MemoryLimitException::MemoryLimitException(const char* file, int line, const ::std::string& reason) :
|
|
3006
|
+
MarshalException(file, line, reason)
|
|
3007
|
+
{
|
|
3008
|
+
}
|
|
3009
|
+
|
|
3010
|
+
#ifdef ICE_CPP11_COMPILER
|
|
3011
|
+
Ice::MemoryLimitException::~MemoryLimitException()
|
|
3012
|
+
{
|
|
3013
|
+
}
|
|
3014
|
+
#else
|
|
3015
|
+
Ice::MemoryLimitException::~MemoryLimitException() throw()
|
|
3016
|
+
{
|
|
3017
|
+
}
|
|
3018
|
+
#endif
|
|
3019
|
+
|
|
3020
|
+
::std::string
|
|
3021
|
+
Ice::MemoryLimitException::ice_id() const
|
|
3022
|
+
{
|
|
3023
|
+
return "::Ice::MemoryLimitException";
|
|
3024
|
+
}
|
|
3025
|
+
|
|
3026
|
+
Ice::MemoryLimitException*
|
|
3027
|
+
Ice::MemoryLimitException::ice_clone() const
|
|
3028
|
+
{
|
|
3029
|
+
return new MemoryLimitException(*this);
|
|
3030
|
+
}
|
|
3031
|
+
|
|
3032
|
+
void
|
|
3033
|
+
Ice::MemoryLimitException::ice_throw() const
|
|
3034
|
+
{
|
|
3035
|
+
throw *this;
|
|
3036
|
+
}
|
|
3037
|
+
|
|
3038
|
+
Ice::StringConversionException::StringConversionException(const char* file, int line) :
|
|
3039
|
+
MarshalException(file, line)
|
|
3040
|
+
{
|
|
3041
|
+
}
|
|
3042
|
+
|
|
3043
|
+
Ice::StringConversionException::StringConversionException(const char* file, int line, const ::std::string& reason) :
|
|
3044
|
+
MarshalException(file, line, reason)
|
|
3045
|
+
{
|
|
3046
|
+
}
|
|
3047
|
+
|
|
3048
|
+
#ifdef ICE_CPP11_COMPILER
|
|
3049
|
+
Ice::StringConversionException::~StringConversionException()
|
|
3050
|
+
{
|
|
3051
|
+
}
|
|
3052
|
+
#else
|
|
3053
|
+
Ice::StringConversionException::~StringConversionException() throw()
|
|
3054
|
+
{
|
|
3055
|
+
}
|
|
3056
|
+
#endif
|
|
3057
|
+
|
|
3058
|
+
::std::string
|
|
3059
|
+
Ice::StringConversionException::ice_id() const
|
|
3060
|
+
{
|
|
3061
|
+
return "::Ice::StringConversionException";
|
|
3062
|
+
}
|
|
3063
|
+
|
|
3064
|
+
Ice::StringConversionException*
|
|
3065
|
+
Ice::StringConversionException::ice_clone() const
|
|
3066
|
+
{
|
|
3067
|
+
return new StringConversionException(*this);
|
|
3068
|
+
}
|
|
3069
|
+
|
|
3070
|
+
void
|
|
3071
|
+
Ice::StringConversionException::ice_throw() const
|
|
3072
|
+
{
|
|
3073
|
+
throw *this;
|
|
3074
|
+
}
|
|
3075
|
+
|
|
3076
|
+
Ice::EncapsulationException::EncapsulationException(const char* file, int line) :
|
|
3077
|
+
MarshalException(file, line)
|
|
3078
|
+
{
|
|
3079
|
+
}
|
|
3080
|
+
|
|
3081
|
+
Ice::EncapsulationException::EncapsulationException(const char* file, int line, const ::std::string& reason) :
|
|
3082
|
+
MarshalException(file, line, reason)
|
|
3083
|
+
{
|
|
3084
|
+
}
|
|
3085
|
+
|
|
3086
|
+
#ifdef ICE_CPP11_COMPILER
|
|
3087
|
+
Ice::EncapsulationException::~EncapsulationException()
|
|
3088
|
+
{
|
|
3089
|
+
}
|
|
3090
|
+
#else
|
|
3091
|
+
Ice::EncapsulationException::~EncapsulationException() throw()
|
|
3092
|
+
{
|
|
3093
|
+
}
|
|
3094
|
+
#endif
|
|
3095
|
+
|
|
3096
|
+
::std::string
|
|
3097
|
+
Ice::EncapsulationException::ice_id() const
|
|
3098
|
+
{
|
|
3099
|
+
return "::Ice::EncapsulationException";
|
|
3100
|
+
}
|
|
3101
|
+
|
|
3102
|
+
Ice::EncapsulationException*
|
|
3103
|
+
Ice::EncapsulationException::ice_clone() const
|
|
3104
|
+
{
|
|
3105
|
+
return new EncapsulationException(*this);
|
|
3106
|
+
}
|
|
3107
|
+
|
|
3108
|
+
void
|
|
3109
|
+
Ice::EncapsulationException::ice_throw() const
|
|
3110
|
+
{
|
|
3111
|
+
throw *this;
|
|
3112
|
+
}
|
|
3113
|
+
|
|
3114
|
+
Ice::FeatureNotSupportedException::FeatureNotSupportedException(const char* file, int line) :
|
|
3115
|
+
LocalException(file, line)
|
|
3116
|
+
{
|
|
3117
|
+
}
|
|
3118
|
+
|
|
3119
|
+
Ice::FeatureNotSupportedException::FeatureNotSupportedException(const char* file, int line, const ::std::string& unsupportedFeature) :
|
|
3120
|
+
LocalException(file, line),
|
|
3121
|
+
unsupportedFeature(unsupportedFeature)
|
|
3122
|
+
{
|
|
3123
|
+
}
|
|
3124
|
+
|
|
3125
|
+
#ifdef ICE_CPP11_COMPILER
|
|
3126
|
+
Ice::FeatureNotSupportedException::~FeatureNotSupportedException()
|
|
3127
|
+
{
|
|
3128
|
+
}
|
|
3129
|
+
#else
|
|
3130
|
+
Ice::FeatureNotSupportedException::~FeatureNotSupportedException() throw()
|
|
3131
|
+
{
|
|
3132
|
+
}
|
|
3133
|
+
#endif
|
|
3134
|
+
|
|
3135
|
+
::std::string
|
|
3136
|
+
Ice::FeatureNotSupportedException::ice_id() const
|
|
3137
|
+
{
|
|
3138
|
+
return "::Ice::FeatureNotSupportedException";
|
|
3139
|
+
}
|
|
3140
|
+
|
|
3141
|
+
Ice::FeatureNotSupportedException*
|
|
3142
|
+
Ice::FeatureNotSupportedException::ice_clone() const
|
|
3143
|
+
{
|
|
3144
|
+
return new FeatureNotSupportedException(*this);
|
|
3145
|
+
}
|
|
3146
|
+
|
|
3147
|
+
void
|
|
3148
|
+
Ice::FeatureNotSupportedException::ice_throw() const
|
|
3149
|
+
{
|
|
3150
|
+
throw *this;
|
|
3151
|
+
}
|
|
3152
|
+
|
|
3153
|
+
Ice::SecurityException::SecurityException(const char* file, int line) :
|
|
3154
|
+
LocalException(file, line)
|
|
3155
|
+
{
|
|
3156
|
+
}
|
|
3157
|
+
|
|
3158
|
+
Ice::SecurityException::SecurityException(const char* file, int line, const ::std::string& reason) :
|
|
3159
|
+
LocalException(file, line),
|
|
3160
|
+
reason(reason)
|
|
3161
|
+
{
|
|
3162
|
+
}
|
|
3163
|
+
|
|
3164
|
+
#ifdef ICE_CPP11_COMPILER
|
|
3165
|
+
Ice::SecurityException::~SecurityException()
|
|
3166
|
+
{
|
|
3167
|
+
}
|
|
3168
|
+
#else
|
|
3169
|
+
Ice::SecurityException::~SecurityException() throw()
|
|
3170
|
+
{
|
|
3171
|
+
}
|
|
3172
|
+
#endif
|
|
3173
|
+
|
|
3174
|
+
::std::string
|
|
3175
|
+
Ice::SecurityException::ice_id() const
|
|
3176
|
+
{
|
|
3177
|
+
return "::Ice::SecurityException";
|
|
3178
|
+
}
|
|
3179
|
+
|
|
3180
|
+
Ice::SecurityException*
|
|
3181
|
+
Ice::SecurityException::ice_clone() const
|
|
3182
|
+
{
|
|
3183
|
+
return new SecurityException(*this);
|
|
3184
|
+
}
|
|
3185
|
+
|
|
3186
|
+
void
|
|
3187
|
+
Ice::SecurityException::ice_throw() const
|
|
3188
|
+
{
|
|
3189
|
+
throw *this;
|
|
3190
|
+
}
|
|
3191
|
+
|
|
3192
|
+
Ice::FixedProxyException::FixedProxyException(const char* file, int line) :
|
|
3193
|
+
LocalException(file, line)
|
|
3194
|
+
{
|
|
3195
|
+
}
|
|
3196
|
+
|
|
3197
|
+
#ifdef ICE_CPP11_COMPILER
|
|
3198
|
+
Ice::FixedProxyException::~FixedProxyException()
|
|
3199
|
+
{
|
|
3200
|
+
}
|
|
3201
|
+
#else
|
|
3202
|
+
Ice::FixedProxyException::~FixedProxyException() throw()
|
|
3203
|
+
{
|
|
3204
|
+
}
|
|
3205
|
+
#endif
|
|
3206
|
+
|
|
3207
|
+
::std::string
|
|
3208
|
+
Ice::FixedProxyException::ice_id() const
|
|
3209
|
+
{
|
|
3210
|
+
return "::Ice::FixedProxyException";
|
|
3211
|
+
}
|
|
3212
|
+
|
|
3213
|
+
Ice::FixedProxyException*
|
|
3214
|
+
Ice::FixedProxyException::ice_clone() const
|
|
3215
|
+
{
|
|
3216
|
+
return new FixedProxyException(*this);
|
|
3217
|
+
}
|
|
3218
|
+
|
|
3219
|
+
void
|
|
3220
|
+
Ice::FixedProxyException::ice_throw() const
|
|
3221
|
+
{
|
|
3222
|
+
throw *this;
|
|
3223
|
+
}
|
|
3224
|
+
|
|
3225
|
+
Ice::ResponseSentException::ResponseSentException(const char* file, int line) :
|
|
3226
|
+
LocalException(file, line)
|
|
3227
|
+
{
|
|
3228
|
+
}
|
|
3229
|
+
|
|
3230
|
+
#ifdef ICE_CPP11_COMPILER
|
|
3231
|
+
Ice::ResponseSentException::~ResponseSentException()
|
|
3232
|
+
{
|
|
3233
|
+
}
|
|
3234
|
+
#else
|
|
3235
|
+
Ice::ResponseSentException::~ResponseSentException() throw()
|
|
3236
|
+
{
|
|
3237
|
+
}
|
|
3238
|
+
#endif
|
|
3239
|
+
|
|
3240
|
+
::std::string
|
|
3241
|
+
Ice::ResponseSentException::ice_id() const
|
|
3242
|
+
{
|
|
3243
|
+
return "::Ice::ResponseSentException";
|
|
3244
|
+
}
|
|
3245
|
+
|
|
3246
|
+
Ice::ResponseSentException*
|
|
3247
|
+
Ice::ResponseSentException::ice_clone() const
|
|
3248
|
+
{
|
|
3249
|
+
return new ResponseSentException(*this);
|
|
3250
|
+
}
|
|
3251
|
+
|
|
3252
|
+
void
|
|
3253
|
+
Ice::ResponseSentException::ice_throw() const
|
|
3254
|
+
{
|
|
3255
|
+
throw *this;
|
|
3256
|
+
}
|
|
3257
|
+
|
|
3258
|
+
namespace Ice
|
|
3259
|
+
{
|
|
3260
|
+
}
|
|
3261
|
+
|
|
3262
|
+
#endif
|