zeroc-ice 3.7.10 → 3.8.0
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/Communicator.cpp +575 -0
- data/dist/IceRuby/Communicator.h +19 -0
- data/dist/IceRuby/Config.h +77 -0
- data/dist/IceRuby/Connection.cpp +428 -0
- data/dist/IceRuby/Connection.h +20 -0
- data/dist/IceRuby/DefaultSliceLoader.cpp +45 -0
- data/dist/IceRuby/DefaultSliceLoader.h +25 -0
- data/dist/IceRuby/Endpoint.cpp +342 -0
- data/dist/IceRuby/Endpoint.h +18 -0
- data/dist/IceRuby/ImplicitContext.cpp +143 -0
- data/dist/IceRuby/ImplicitContext.h +16 -0
- data/dist/IceRuby/Init.cpp +36 -0
- data/dist/IceRuby/Logger.cpp +146 -0
- data/dist/IceRuby/Logger.h +19 -0
- data/dist/IceRuby/Operation.cpp +623 -0
- data/dist/IceRuby/Operation.h +28 -0
- data/dist/IceRuby/Properties.cpp +413 -0
- data/dist/IceRuby/Properties.h +16 -0
- data/dist/IceRuby/Proxy.cpp +926 -0
- data/dist/IceRuby/Proxy.h +21 -0
- data/dist/IceRuby/RubySliceLoader.cpp +39 -0
- data/dist/IceRuby/RubySliceLoader.h +27 -0
- data/dist/IceRuby/Slice.cpp +199 -0
- data/dist/IceRuby/Slice.h +13 -0
- data/dist/IceRuby/Types.cpp +3133 -0
- data/dist/IceRuby/Types.h +533 -0
- data/dist/IceRuby/Util.cpp +553 -0
- data/dist/IceRuby/Util.h +485 -0
- data/dist/ice/cpp/include/Ice/AsyncResponseHandler.h +85 -0
- data/dist/ice/cpp/include/Ice/BatchRequest.h +39 -0
- data/dist/ice/cpp/include/Ice/BatchRequestQueueF.h +14 -0
- data/dist/ice/cpp/include/Ice/Buffer.h +159 -0
- data/dist/ice/cpp/include/Ice/Communicator.h +411 -0
- data/dist/ice/cpp/include/Ice/CommunicatorF.h +16 -0
- data/dist/ice/cpp/include/Ice/Config.h +60 -0
- data/dist/ice/cpp/include/Ice/Connection.h +410 -0
- data/dist/ice/cpp/include/Ice/ConnectionF.h +36 -0
- data/dist/ice/cpp/include/Ice/ConnectionIF.h +16 -0
- data/dist/ice/cpp/include/Ice/CtrlCHandler.h +56 -0
- data/dist/ice/cpp/include/Ice/Current.h +60 -0
- data/dist/ice/cpp/include/Ice/DefaultSliceLoader.h +160 -0
- data/dist/ice/cpp/include/Ice/Demangle.h +17 -0
- data/dist/ice/cpp/include/Ice/Endpoint.h +298 -0
- data/dist/ice/cpp/include/Ice/EndpointF.h +44 -0
- data/dist/ice/cpp/include/Ice/EndpointSelectionType.h +21 -0
- data/dist/ice/cpp/include/Ice/Exception.h +56 -0
- data/dist/ice/cpp/include/Ice/FacetMap.h +16 -0
- data/dist/ice/cpp/include/Ice/Format.h +22 -0
- data/dist/ice/cpp/include/Ice/Ice.h +60 -0
- data/dist/ice/cpp/include/Ice/IconvStringConverter.h +216 -0
- data/dist/ice/cpp/include/Ice/ImplicitContext.h +76 -0
- data/dist/ice/cpp/include/Ice/IncomingRequest.h +75 -0
- data/dist/ice/cpp/include/Ice/Initialize.h +143 -0
- data/dist/ice/cpp/include/Ice/InputStream.h +942 -0
- data/dist/ice/cpp/include/Ice/InstanceF.h +14 -0
- data/dist/ice/cpp/include/Ice/Instrumentation.h +319 -0
- data/dist/ice/cpp/include/Ice/LocalException.h +58 -0
- data/dist/ice/cpp/include/Ice/LocalExceptions.h +870 -0
- data/dist/ice/cpp/include/Ice/Logger.h +62 -0
- data/dist/ice/cpp/include/Ice/LoggerUtil.h +162 -0
- data/dist/ice/cpp/include/Ice/MarshaledResult.h +50 -0
- data/dist/ice/cpp/include/Ice/NativePropertiesAdmin.h +54 -0
- data/dist/ice/cpp/include/Ice/Object.h +168 -0
- data/dist/ice/cpp/include/Ice/ObjectAdapter.h +324 -0
- data/dist/ice/cpp/include/Ice/ObjectAdapterF.h +16 -0
- data/dist/ice/cpp/include/Ice/ObjectF.h +16 -0
- data/dist/ice/cpp/include/Ice/ObserverHelper.h +164 -0
- data/dist/ice/cpp/include/Ice/OutgoingAsync.h +512 -0
- data/dist/ice/cpp/include/Ice/OutgoingResponse.h +129 -0
- data/dist/ice/cpp/include/Ice/OutputStream.h +872 -0
- data/dist/ice/cpp/include/Ice/Plugin.h +73 -0
- data/dist/ice/cpp/include/Ice/PluginFactory.h +77 -0
- data/dist/ice/cpp/include/Ice/PopDisableWarnings.h +16 -0
- data/dist/ice/cpp/include/Ice/Properties.h +307 -0
- data/dist/ice/cpp/include/Ice/PropertiesF.h +19 -0
- data/dist/ice/cpp/include/Ice/Proxy.h +742 -0
- data/dist/ice/cpp/include/Ice/ProxyF.h +11 -0
- data/dist/ice/cpp/include/Ice/ProxyFunctions.h +209 -0
- data/dist/ice/cpp/include/Ice/PushDisableWarnings.h +29 -0
- data/dist/ice/cpp/include/Ice/ReferenceF.h +14 -0
- data/dist/ice/cpp/include/Ice/RequestHandlerF.h +20 -0
- data/dist/ice/cpp/include/Ice/SSL/ClientAuthenticationOptions.h +268 -0
- data/dist/ice/cpp/include/Ice/SSL/Config.h +54 -0
- data/dist/ice/cpp/include/Ice/SSL/ConnectionInfo.h +107 -0
- data/dist/ice/cpp/include/Ice/SSL/ConnectionInfoF.h +39 -0
- data/dist/ice/cpp/include/Ice/SSL/EndpointInfo.h +40 -0
- data/dist/ice/cpp/include/Ice/SSL/SSLException.h +32 -0
- data/dist/ice/cpp/include/Ice/SSL/ServerAuthenticationOptions.h +278 -0
- data/dist/ice/cpp/include/Ice/ServantLocator.h +51 -0
- data/dist/ice/cpp/include/Ice/Service.h +219 -0
- data/dist/ice/cpp/include/Ice/SliceLoader.h +67 -0
- data/dist/ice/cpp/include/Ice/SlicedData.h +125 -0
- data/dist/ice/cpp/include/Ice/SlicedDataF.h +30 -0
- data/dist/ice/cpp/include/Ice/StreamHelpers.h +652 -0
- data/dist/ice/cpp/include/Ice/StreamableTraits.h +291 -0
- data/dist/ice/cpp/include/Ice/StringConverter.h +167 -0
- data/dist/ice/cpp/include/Ice/StringUtil.h +114 -0
- data/dist/ice/cpp/include/Ice/TimerTask.h +24 -0
- data/dist/ice/cpp/include/Ice/TupleCompare.h +103 -0
- data/dist/ice/cpp/include/Ice/UUID.h +16 -0
- data/dist/ice/cpp/include/Ice/UserException.h +46 -0
- data/dist/ice/cpp/include/Ice/UserExceptionFactory.h +15 -0
- data/dist/ice/cpp/include/Ice/Value.h +127 -0
- data/dist/ice/cpp/include/Ice/ValueF.h +16 -0
- data/dist/ice/cpp/include/IceDiscovery/IceDiscovery.h +28 -0
- data/dist/ice/cpp/include/IceLocatorDiscovery/IceLocatorDiscovery.h +28 -0
- data/dist/ice/cpp/include/generated/Ice/BuiltinSequences.h +70 -0
- data/dist/ice/cpp/include/generated/Ice/Context.h +40 -0
- data/dist/ice/cpp/include/generated/Ice/EndpointTypes.h +74 -0
- data/dist/ice/cpp/include/generated/Ice/Identity.h +108 -0
- data/dist/ice/cpp/include/generated/Ice/Locator.h +542 -0
- data/dist/ice/cpp/include/generated/Ice/LocatorRegistry.h +443 -0
- data/dist/ice/cpp/include/generated/Ice/Metrics.h +1103 -0
- data/dist/ice/cpp/include/generated/Ice/OperationMode.h +73 -0
- data/dist/ice/cpp/include/generated/Ice/Process.h +245 -0
- data/dist/ice/cpp/include/generated/Ice/PropertiesAdmin.h +314 -0
- data/dist/ice/cpp/include/generated/Ice/PropertyDict.h +39 -0
- data/dist/ice/cpp/include/generated/Ice/RemoteLogger.h +724 -0
- data/dist/ice/cpp/include/generated/Ice/ReplyStatus.h +94 -0
- data/dist/ice/cpp/include/generated/Ice/Router.h +496 -0
- data/dist/ice/cpp/include/generated/Ice/SliceChecksumDict.h +37 -0
- data/dist/ice/cpp/include/generated/Ice/Version.h +112 -0
- data/dist/ice/cpp/include/generated/IceDiscovery/Lookup.h +498 -0
- data/dist/ice/cpp/include/generated/IceLocatorDiscovery/Lookup.h +387 -0
- data/dist/ice/cpp/src/Ice/Acceptor.h +41 -0
- data/dist/ice/cpp/src/Ice/AcceptorF.h +17 -0
- data/dist/ice/cpp/src/Ice/AddDefaultPluginFactories.h +16 -0
- data/dist/ice/cpp/src/Ice/AddDefaultPluginFactories_all.cpp +43 -0
- data/dist/ice/cpp/src/Ice/AddDefaultPluginFactories_min.cpp +17 -0
- data/dist/ice/cpp/src/Ice/ArgVector.cpp +58 -0
- data/dist/ice/cpp/src/Ice/ArgVector.h +30 -0
- data/dist/ice/cpp/src/Ice/Base64.cpp +263 -0
- data/dist/ice/cpp/src/Ice/Base64.h +26 -0
- data/dist/ice/cpp/src/Ice/BatchRequestQueue.cpp +199 -0
- data/dist/ice/cpp/src/Ice/BatchRequestQueue.h +49 -0
- data/dist/ice/cpp/src/Ice/Buffer.cpp +187 -0
- data/dist/ice/cpp/src/Ice/CheckIdentity.h +21 -0
- data/dist/ice/cpp/src/Ice/CollocatedRequestHandler.cpp +373 -0
- data/dist/ice/cpp/src/Ice/CollocatedRequestHandler.h +65 -0
- data/dist/ice/cpp/src/Ice/Communicator.cpp +399 -0
- data/dist/ice/cpp/src/Ice/CommunicatorFlushBatchAsync.cpp +140 -0
- data/dist/ice/cpp/src/Ice/CommunicatorFlushBatchAsync.h +39 -0
- data/dist/ice/cpp/src/Ice/ConnectRequestHandler.cpp +227 -0
- data/dist/ice/cpp/src/Ice/ConnectRequestHandler.h +51 -0
- data/dist/ice/cpp/src/Ice/ConnectRequestHandlerF.h +14 -0
- data/dist/ice/cpp/src/Ice/Connection.cpp +44 -0
- data/dist/ice/cpp/src/Ice/ConnectionFactory.cpp +1758 -0
- data/dist/ice/cpp/src/Ice/ConnectionFactory.h +264 -0
- data/dist/ice/cpp/src/Ice/ConnectionFactoryF.h +17 -0
- data/dist/ice/cpp/src/Ice/ConnectionI.cpp +3563 -0
- data/dist/ice/cpp/src/Ice/ConnectionI.h +429 -0
- data/dist/ice/cpp/src/Ice/ConnectionOptions.h +22 -0
- data/dist/ice/cpp/src/Ice/Connector.h +38 -0
- data/dist/ice/cpp/src/Ice/ConnectorF.h +14 -0
- data/dist/ice/cpp/src/Ice/ConsoleUtil.cpp +136 -0
- data/dist/ice/cpp/src/Ice/ConsoleUtil.h +79 -0
- data/dist/ice/cpp/src/Ice/CtrlCHandler.cpp +189 -0
- data/dist/ice/cpp/src/Ice/Current.cpp +29 -0
- data/dist/ice/cpp/src/Ice/DLLMain.cpp +40 -0
- data/dist/ice/cpp/src/Ice/DefaultSliceLoader.cpp +39 -0
- data/dist/ice/cpp/src/Ice/DefaultsAndOverrides.cpp +81 -0
- data/dist/ice/cpp/src/Ice/DefaultsAndOverrides.h +38 -0
- data/dist/ice/cpp/src/Ice/DefaultsAndOverridesF.h +14 -0
- data/dist/ice/cpp/src/Ice/Demangle.cpp +25 -0
- data/dist/ice/cpp/src/Ice/DisableWarnings.h +31 -0
- data/dist/ice/cpp/src/Ice/DynamicLibrary.cpp +216 -0
- data/dist/ice/cpp/src/Ice/DynamicLibrary.h +91 -0
- data/dist/ice/cpp/src/Ice/Endian.h +40 -0
- data/dist/ice/cpp/src/Ice/EndpointFactory.cpp +165 -0
- data/dist/ice/cpp/src/Ice/EndpointFactory.h +96 -0
- data/dist/ice/cpp/src/Ice/EndpointFactoryF.h +14 -0
- data/dist/ice/cpp/src/Ice/EndpointFactoryManager.cpp +180 -0
- data/dist/ice/cpp/src/Ice/EndpointFactoryManager.h +42 -0
- data/dist/ice/cpp/src/Ice/EndpointFactoryManagerF.h +14 -0
- data/dist/ice/cpp/src/Ice/EndpointI.cpp +128 -0
- data/dist/ice/cpp/src/Ice/EndpointI.h +150 -0
- data/dist/ice/cpp/src/Ice/EndpointIF.h +21 -0
- data/dist/ice/cpp/src/Ice/EventHandler.cpp +9 -0
- data/dist/ice/cpp/src/Ice/EventHandler.h +71 -0
- data/dist/ice/cpp/src/Ice/EventHandlerF.h +14 -0
- data/dist/ice/cpp/src/Ice/Exception.cpp +5 -0
- data/dist/ice/cpp/src/Ice/FileUtil.cpp +476 -0
- data/dist/ice/cpp/src/Ice/FileUtil.h +152 -0
- data/dist/ice/cpp/src/Ice/FixedRequestHandler.cpp +34 -0
- data/dist/ice/cpp/src/Ice/FixedRequestHandler.h +29 -0
- data/dist/ice/cpp/src/Ice/HashUtil.h +67 -0
- data/dist/ice/cpp/src/Ice/HttpParser.cpp +684 -0
- data/dist/ice/cpp/src/Ice/HttpParser.h +112 -0
- data/dist/ice/cpp/src/Ice/IPEndpointI.cpp +593 -0
- data/dist/ice/cpp/src/Ice/IPEndpointI.h +106 -0
- data/dist/ice/cpp/src/Ice/IPEndpointIF.h +17 -0
- data/dist/ice/cpp/src/Ice/IdleTimeoutTransceiverDecorator.cpp +172 -0
- data/dist/ice/cpp/src/Ice/IdleTimeoutTransceiverDecorator.h +89 -0
- data/dist/ice/cpp/src/Ice/ImplicitContext.cpp +109 -0
- data/dist/ice/cpp/src/Ice/IncomingRequest.cpp +66 -0
- data/dist/ice/cpp/src/Ice/Initialize.cpp +160 -0
- data/dist/ice/cpp/src/Ice/InputStream.cpp +2206 -0
- data/dist/ice/cpp/src/Ice/Instance.cpp +1956 -0
- data/dist/ice/cpp/src/Ice/Instance.h +225 -0
- data/dist/ice/cpp/src/Ice/InstrumentationI.cpp +959 -0
- data/dist/ice/cpp/src/Ice/InstrumentationI.h +235 -0
- data/dist/ice/cpp/src/Ice/LocalException.cpp +518 -0
- data/dist/ice/cpp/src/Ice/LocalExceptions.cpp +577 -0
- data/dist/ice/cpp/src/Ice/LocatorInfo.cpp +851 -0
- data/dist/ice/cpp/src/Ice/LocatorInfo.h +176 -0
- data/dist/ice/cpp/src/Ice/LocatorInfoF.h +20 -0
- data/dist/ice/cpp/src/Ice/LoggerAdminI.cpp +774 -0
- data/dist/ice/cpp/src/Ice/LoggerAdminI.h +31 -0
- data/dist/ice/cpp/src/Ice/LoggerI.cpp +234 -0
- data/dist/ice/cpp/src/Ice/LoggerI.h +47 -0
- data/dist/ice/cpp/src/Ice/LoggerMiddleware.cpp +176 -0
- data/dist/ice/cpp/src/Ice/LoggerMiddleware.h +42 -0
- data/dist/ice/cpp/src/Ice/LoggerUtil.cpp +76 -0
- data/dist/ice/cpp/src/Ice/MarshaledResult.cpp +20 -0
- data/dist/ice/cpp/src/Ice/MetricsAdminI.cpp +608 -0
- data/dist/ice/cpp/src/Ice/MetricsAdminI.h +600 -0
- data/dist/ice/cpp/src/Ice/MetricsFunctional.h +92 -0
- data/dist/ice/cpp/src/Ice/MetricsObserverI.h +587 -0
- data/dist/ice/cpp/src/Ice/NativePropertiesAdmin.cpp +185 -0
- data/dist/ice/cpp/src/Ice/Network.cpp +1927 -0
- data/dist/ice/cpp/src/Ice/Network.h +265 -0
- data/dist/ice/cpp/src/Ice/NetworkF.h +11 -0
- data/dist/ice/cpp/src/Ice/NetworkProxy.cpp +306 -0
- data/dist/ice/cpp/src/Ice/NetworkProxy.h +67 -0
- data/dist/ice/cpp/src/Ice/NetworkProxyF.h +14 -0
- data/dist/ice/cpp/src/Ice/OSLogLoggerI.cpp +55 -0
- data/dist/ice/cpp/src/Ice/OSLogLoggerI.h +35 -0
- data/dist/ice/cpp/src/Ice/Object.cpp +249 -0
- data/dist/ice/cpp/src/Ice/ObjectAdapterFactory.cpp +348 -0
- data/dist/ice/cpp/src/Ice/ObjectAdapterFactory.h +53 -0
- data/dist/ice/cpp/src/Ice/ObjectAdapterFactoryF.h +14 -0
- data/dist/ice/cpp/src/Ice/ObjectAdapterI.cpp +1383 -0
- data/dist/ice/cpp/src/Ice/ObjectAdapterI.h +163 -0
- data/dist/ice/cpp/src/Ice/ObserverHelper.cpp +75 -0
- data/dist/ice/cpp/src/Ice/ObserverMiddleware.cpp +96 -0
- data/dist/ice/cpp/src/Ice/ObserverMiddleware.h +25 -0
- data/dist/ice/cpp/src/Ice/OpaqueEndpointI.cpp +368 -0
- data/dist/ice/cpp/src/Ice/OpaqueEndpointI.h +66 -0
- data/dist/ice/cpp/src/Ice/Options.cpp +980 -0
- data/dist/ice/cpp/src/Ice/Options.h +119 -0
- data/dist/ice/cpp/src/Ice/OutgoingAsync.cpp +1106 -0
- data/dist/ice/cpp/src/Ice/OutgoingResponse.cpp +276 -0
- data/dist/ice/cpp/src/Ice/OutputStream.cpp +1454 -0
- data/dist/ice/cpp/src/Ice/OutputUtil.cpp +344 -0
- data/dist/ice/cpp/src/Ice/OutputUtil.h +173 -0
- data/dist/ice/cpp/src/Ice/PluginManagerI.cpp +344 -0
- data/dist/ice/cpp/src/Ice/PluginManagerI.h +54 -0
- data/dist/ice/cpp/src/Ice/Properties.cpp +931 -0
- data/dist/ice/cpp/src/Ice/PropertyNames.cpp +606 -0
- data/dist/ice/cpp/src/Ice/PropertyNames.h +63 -0
- data/dist/ice/cpp/src/Ice/PropertyUtil.cpp +103 -0
- data/dist/ice/cpp/src/Ice/PropertyUtil.h +31 -0
- data/dist/ice/cpp/src/Ice/Protocol.cpp +159 -0
- data/dist/ice/cpp/src/Ice/Protocol.h +116 -0
- data/dist/ice/cpp/src/Ice/ProtocolInstance.cpp +186 -0
- data/dist/ice/cpp/src/Ice/ProtocolInstance.h +74 -0
- data/dist/ice/cpp/src/Ice/ProtocolInstanceF.h +14 -0
- data/dist/ice/cpp/src/Ice/ProtocolPluginFacade.cpp +29 -0
- data/dist/ice/cpp/src/Ice/ProtocolPluginFacade.h +35 -0
- data/dist/ice/cpp/src/Ice/Proxy.cpp +541 -0
- data/dist/ice/cpp/src/Ice/ProxyAsync.cpp +684 -0
- data/dist/ice/cpp/src/Ice/ProxyFunctions.cpp +90 -0
- data/dist/ice/cpp/src/Ice/PushDisableDeprecatedWarnings.h +15 -0
- data/dist/ice/cpp/src/Ice/Random.cpp +29 -0
- data/dist/ice/cpp/src/Ice/Random.h +23 -0
- data/dist/ice/cpp/src/Ice/Reference.cpp +1584 -0
- data/dist/ice/cpp/src/Ice/Reference.h +339 -0
- data/dist/ice/cpp/src/Ice/ReferenceFactory.cpp +830 -0
- data/dist/ice/cpp/src/Ice/ReferenceFactory.h +58 -0
- data/dist/ice/cpp/src/Ice/ReferenceFactoryF.h +14 -0
- data/dist/ice/cpp/src/Ice/RequestHandler.cpp +28 -0
- data/dist/ice/cpp/src/Ice/RequestHandler.h +53 -0
- data/dist/ice/cpp/src/Ice/RequestHandlerCache.cpp +76 -0
- data/dist/ice/cpp/src/Ice/RequestHandlerCache.h +33 -0
- data/dist/ice/cpp/src/Ice/ResourceConfig.h +27 -0
- data/dist/ice/cpp/src/Ice/RetryQueue.cpp +151 -0
- data/dist/ice/cpp/src/Ice/RetryQueue.h +59 -0
- data/dist/ice/cpp/src/Ice/RetryQueueF.h +14 -0
- data/dist/ice/cpp/src/Ice/RouterInfo.cpp +275 -0
- data/dist/ice/cpp/src/Ice/RouterInfo.h +95 -0
- data/dist/ice/cpp/src/Ice/RouterInfoF.h +17 -0
- data/dist/ice/cpp/src/Ice/SHA1.cpp +195 -0
- data/dist/ice/cpp/src/Ice/SHA1.h +35 -0
- data/dist/ice/cpp/src/Ice/SSL/DistinguishedName.cpp +89 -0
- data/dist/ice/cpp/src/Ice/SSL/DistinguishedName.h +87 -0
- data/dist/ice/cpp/src/Ice/SSL/OpenSSLEngine.cpp +513 -0
- data/dist/ice/cpp/src/Ice/SSL/OpenSSLEngine.h +40 -0
- data/dist/ice/cpp/src/Ice/SSL/OpenSSLEngineF.h +13 -0
- data/dist/ice/cpp/src/Ice/SSL/OpenSSLTransceiverI.cpp +635 -0
- data/dist/ice/cpp/src/Ice/SSL/OpenSSLTransceiverI.h +80 -0
- data/dist/ice/cpp/src/Ice/SSL/RFC2253.cpp +487 -0
- data/dist/ice/cpp/src/Ice/SSL/RFC2253.h +58 -0
- data/dist/ice/cpp/src/Ice/SSL/SSLAcceptorI.cpp +124 -0
- data/dist/ice/cpp/src/Ice/SSL/SSLAcceptorI.h +52 -0
- data/dist/ice/cpp/src/Ice/SSL/SSLConnectorI.cpp +92 -0
- data/dist/ice/cpp/src/Ice/SSL/SSLConnectorI.h +38 -0
- data/dist/ice/cpp/src/Ice/SSL/SSLEndpointI.cpp +377 -0
- data/dist/ice/cpp/src/Ice/SSL/SSLEndpointI.h +84 -0
- data/dist/ice/cpp/src/Ice/SSL/SSLEngine.cpp +115 -0
- data/dist/ice/cpp/src/Ice/SSL/SSLEngine.h +72 -0
- data/dist/ice/cpp/src/Ice/SSL/SSLEngineF.h +14 -0
- data/dist/ice/cpp/src/Ice/SSL/SSLException.cpp +18 -0
- data/dist/ice/cpp/src/Ice/SSL/SSLInstance.cpp +27 -0
- data/dist/ice/cpp/src/Ice/SSL/SSLInstance.h +26 -0
- data/dist/ice/cpp/src/Ice/SSL/SSLInstanceF.h +19 -0
- data/dist/ice/cpp/src/Ice/SSL/SSLUtil.cpp +654 -0
- data/dist/ice/cpp/src/Ice/SSL/SSLUtil.h +104 -0
- data/dist/ice/cpp/src/Ice/SSL/SchannelEngine.cpp +1437 -0
- data/dist/ice/cpp/src/Ice/SSL/SchannelEngine.h +58 -0
- data/dist/ice/cpp/src/Ice/SSL/SchannelEngineF.h +18 -0
- data/dist/ice/cpp/src/Ice/SSL/SchannelTransceiverI.cpp +1085 -0
- data/dist/ice/cpp/src/Ice/SSL/SchannelTransceiverI.h +118 -0
- data/dist/ice/cpp/src/Ice/SSL/SecureTransportEngine.cpp +822 -0
- data/dist/ice/cpp/src/Ice/SSL/SecureTransportEngine.h +44 -0
- data/dist/ice/cpp/src/Ice/SSL/SecureTransportEngineF.h +18 -0
- data/dist/ice/cpp/src/Ice/SSL/SecureTransportTransceiverI.cpp +621 -0
- data/dist/ice/cpp/src/Ice/SSL/SecureTransportTransceiverI.h +91 -0
- data/dist/ice/cpp/src/Ice/SSL/SecureTransportUtil.cpp +1061 -0
- data/dist/ice/cpp/src/Ice/SSL/SecureTransportUtil.h +40 -0
- data/dist/ice/cpp/src/Ice/SSL/TrustManager.cpp +222 -0
- data/dist/ice/cpp/src/Ice/SSL/TrustManager.h +42 -0
- data/dist/ice/cpp/src/Ice/SSL/TrustManagerF.h +14 -0
- data/dist/ice/cpp/src/Ice/ScannerConfig.h +35 -0
- data/dist/ice/cpp/src/Ice/Selector.cpp +1270 -0
- data/dist/ice/cpp/src/Ice/Selector.h +235 -0
- data/dist/ice/cpp/src/Ice/ServantManager.cpp +547 -0
- data/dist/ice/cpp/src/Ice/ServantManager.h +66 -0
- data/dist/ice/cpp/src/Ice/ServantManagerF.h +14 -0
- data/dist/ice/cpp/src/Ice/Service.cpp +1790 -0
- data/dist/ice/cpp/src/Ice/SharedContext.h +33 -0
- data/dist/ice/cpp/src/Ice/SliceLoader.cpp +53 -0
- data/dist/ice/cpp/src/Ice/SlicedData.cpp +48 -0
- data/dist/ice/cpp/src/Ice/StreamSocket.cpp +472 -0
- data/dist/ice/cpp/src/Ice/StreamSocket.h +73 -0
- data/dist/ice/cpp/src/Ice/StringConverter.cpp +582 -0
- data/dist/ice/cpp/src/Ice/StringUtil.cpp +1137 -0
- data/dist/ice/cpp/src/Ice/SysLoggerI.cpp +160 -0
- data/dist/ice/cpp/src/Ice/SysLoggerI.h +34 -0
- data/dist/ice/cpp/src/Ice/SystemdJournalI.cpp +65 -0
- data/dist/ice/cpp/src/Ice/SystemdJournalI.h +33 -0
- data/dist/ice/cpp/src/Ice/TargetCompare.h +96 -0
- data/dist/ice/cpp/src/Ice/TcpAcceptor.cpp +213 -0
- data/dist/ice/cpp/src/Ice/TcpAcceptor.h +55 -0
- data/dist/ice/cpp/src/Ice/TcpConnector.cpp +128 -0
- data/dist/ice/cpp/src/Ice/TcpConnector.h +36 -0
- data/dist/ice/cpp/src/Ice/TcpEndpointI.cpp +411 -0
- data/dist/ice/cpp/src/Ice/TcpEndpointI.h +86 -0
- data/dist/ice/cpp/src/Ice/TcpTransceiver.cpp +147 -0
- data/dist/ice/cpp/src/Ice/TcpTransceiver.h +53 -0
- data/dist/ice/cpp/src/Ice/ThreadPool.cpp +1110 -0
- data/dist/ice/cpp/src/Ice/ThreadPool.h +305 -0
- data/dist/ice/cpp/src/Ice/ThreadPoolF.h +14 -0
- data/dist/ice/cpp/src/Ice/TimeUtil.cpp +47 -0
- data/dist/ice/cpp/src/Ice/TimeUtil.h +21 -0
- data/dist/ice/cpp/src/Ice/Timer.cpp +169 -0
- data/dist/ice/cpp/src/Ice/Timer.h +212 -0
- data/dist/ice/cpp/src/Ice/TraceLevels.cpp +20 -0
- data/dist/ice/cpp/src/Ice/TraceLevels.h +39 -0
- data/dist/ice/cpp/src/Ice/TraceLevelsF.h +14 -0
- data/dist/ice/cpp/src/Ice/TraceUtil.cpp +399 -0
- data/dist/ice/cpp/src/Ice/TraceUtil.h +41 -0
- data/dist/ice/cpp/src/Ice/Transceiver.cpp +14 -0
- data/dist/ice/cpp/src/Ice/Transceiver.h +52 -0
- data/dist/ice/cpp/src/Ice/TransceiverF.h +23 -0
- data/dist/ice/cpp/src/Ice/UUID.cpp +79 -0
- data/dist/ice/cpp/src/Ice/UdpConnector.cpp +131 -0
- data/dist/ice/cpp/src/Ice/UdpConnector.h +36 -0
- data/dist/ice/cpp/src/Ice/UdpEndpointI.cpp +480 -0
- data/dist/ice/cpp/src/Ice/UdpEndpointI.h +92 -0
- data/dist/ice/cpp/src/Ice/UdpTransceiver.cpp +786 -0
- data/dist/ice/cpp/src/Ice/UdpTransceiver.h +90 -0
- data/dist/ice/cpp/src/Ice/UndefSysMacros.h +37 -0
- data/dist/ice/cpp/src/Ice/UniqueRef.h +77 -0
- data/dist/ice/cpp/src/Ice/UserException.cpp +58 -0
- data/dist/ice/cpp/src/Ice/Value.cpp +145 -0
- data/dist/ice/cpp/src/Ice/WSAcceptor.cpp +87 -0
- data/dist/ice/cpp/src/Ice/WSAcceptor.h +46 -0
- data/dist/ice/cpp/src/Ice/WSConnector.cpp +87 -0
- data/dist/ice/cpp/src/Ice/WSConnector.h +36 -0
- data/dist/ice/cpp/src/Ice/WSEndpoint.cpp +455 -0
- data/dist/ice/cpp/src/Ice/WSEndpoint.h +82 -0
- data/dist/ice/cpp/src/Ice/WSTransceiver.cpp +1715 -0
- data/dist/ice/cpp/src/Ice/WSTransceiver.h +135 -0
- data/dist/ice/cpp/src/Ice/generated/BuiltinSequences.cpp +40 -0
- data/dist/ice/cpp/src/Ice/generated/Context.cpp +40 -0
- data/dist/ice/cpp/src/Ice/generated/EndpointTypes.cpp +40 -0
- data/dist/ice/cpp/src/Ice/generated/Identity.cpp +47 -0
- data/dist/ice/cpp/src/Ice/generated/Locator.cpp +752 -0
- data/dist/ice/cpp/src/Ice/generated/LocatorRegistry.cpp +577 -0
- data/dist/ice/cpp/src/Ice/generated/Metrics.cpp +1205 -0
- data/dist/ice/cpp/src/Ice/generated/OperationMode.cpp +56 -0
- data/dist/ice/cpp/src/Ice/generated/Process.cpp +330 -0
- data/dist/ice/cpp/src/Ice/generated/PropertiesAdmin.cpp +443 -0
- data/dist/ice/cpp/src/Ice/generated/PropertyDict.cpp +40 -0
- data/dist/ice/cpp/src/Ice/generated/RemoteLogger.cpp +851 -0
- data/dist/ice/cpp/src/Ice/generated/ReplyStatus.cpp +70 -0
- data/dist/ice/cpp/src/Ice/generated/Router.cpp +660 -0
- data/dist/ice/cpp/src/Ice/generated/SliceChecksumDict.cpp +39 -0
- data/dist/ice/cpp/src/Ice/generated/Version.cpp +54 -0
- data/dist/ice/cpp/src/IceDiscovery/LocatorI.cpp +202 -0
- data/dist/ice/cpp/src/IceDiscovery/LocatorI.h +68 -0
- data/dist/ice/cpp/src/IceDiscovery/LookupI.cpp +494 -0
- data/dist/ice/cpp/src/IceDiscovery/LookupI.h +168 -0
- data/dist/ice/cpp/src/IceDiscovery/PluginI.cpp +155 -0
- data/dist/ice/cpp/src/IceDiscovery/PluginI.h +31 -0
- data/dist/ice/cpp/src/IceDiscovery/generated/Lookup.cpp +638 -0
- data/dist/ice/cpp/src/IceLocatorDiscovery/Plugin.h +24 -0
- data/dist/ice/cpp/src/IceLocatorDiscovery/PluginI.cpp +822 -0
- data/dist/ice/cpp/src/IceLocatorDiscovery/generated/Lookup.cpp +468 -0
- data/dist/ice/cpp/src/Slice/DeprecationReporter.cpp +172 -0
- data/dist/ice/cpp/src/Slice/DeprecationReporter.h +14 -0
- data/dist/ice/cpp/src/Slice/DocCommentParser.cpp +736 -0
- data/dist/ice/cpp/src/Slice/DocCommentParser.h +61 -0
- data/dist/ice/cpp/src/Slice/FileTracker.cpp +96 -0
- data/dist/ice/cpp/src/Slice/FileTracker.h +44 -0
- data/dist/ice/cpp/src/Slice/Grammar.cpp +4125 -0
- data/dist/ice/cpp/src/Slice/Grammar.h +138 -0
- data/dist/ice/cpp/src/Slice/GrammarUtil.h +128 -0
- data/dist/ice/cpp/src/Slice/MetadataValidation.cpp +473 -0
- data/dist/ice/cpp/src/Slice/MetadataValidation.h +106 -0
- data/dist/ice/cpp/src/Slice/Parser.cpp +4906 -0
- data/dist/ice/cpp/src/Slice/Parser.h +1175 -0
- data/dist/ice/cpp/src/Slice/Preprocessor.cpp +295 -0
- data/dist/ice/cpp/src/Slice/Preprocessor.h +44 -0
- data/dist/ice/cpp/src/Slice/Scanner.cpp +3445 -0
- data/dist/ice/cpp/src/Slice/SliceUtil.cpp +790 -0
- data/dist/ice/cpp/src/Slice/StringLiteralUtil.cpp +448 -0
- data/dist/ice/cpp/src/Slice/Util.h +134 -0
- data/dist/ice/cpp/src/slice2rb/Main.cpp +33 -0
- data/dist/ice/cpp/src/slice2rb/Ruby.cpp +250 -0
- data/dist/ice/cpp/src/slice2rb/RubyUtil.cpp +1197 -0
- data/dist/ice/cpp/src/slice2rb/RubyUtil.h +56 -0
- data/dist/ice/mcpp/internal.H +530 -0
- data/dist/ice/mcpp/system.c +2741 -0
- data/dist/ice/slice/Glacier2/Metrics.ice +47 -0
- data/dist/ice/slice/Glacier2/PermissionsVerifier.ice +55 -0
- data/dist/ice/slice/Glacier2/Router.ice +93 -0
- data/dist/ice/slice/Glacier2/SSLInfo.ice +42 -0
- data/dist/ice/slice/Glacier2/Session.ice +133 -0
- data/dist/ice/slice/Ice/BuiltinSequences.ice +54 -0
- data/dist/ice/slice/Ice/Context.ice +24 -0
- data/dist/ice/slice/Ice/EndpointTypes.ice +50 -0
- data/dist/ice/slice/Ice/Identity.ice +36 -0
- data/dist/ice/slice/Ice/Locator.ice +74 -0
- data/dist/ice/slice/Ice/LocatorRegistry.ice +77 -0
- data/dist/ice/slice/Ice/Metrics.ice +201 -0
- data/dist/ice/slice/Ice/OperationMode.ice +38 -0
- data/dist/ice/slice/Ice/Process.ice +28 -0
- data/dist/ice/slice/Ice/PropertiesAdmin.ice +37 -0
- data/dist/ice/slice/Ice/PropertyDict.ice +23 -0
- data/dist/ice/slice/Ice/RemoteLogger.ice +126 -0
- data/dist/ice/slice/Ice/ReplyStatus.ice +65 -0
- data/dist/ice/slice/Ice/Router.ice +54 -0
- data/dist/ice/slice/Ice/SliceChecksumDict.ice +18 -0
- data/dist/ice/slice/Ice/Version.ice +43 -0
- data/dist/ice/slice/IceBox/ServiceManager.ice +79 -0
- data/dist/ice/slice/IceGrid/Admin.ice +981 -0
- data/dist/ice/slice/IceGrid/Descriptor.ice +519 -0
- data/dist/ice/slice/IceGrid/Exception.ice +98 -0
- data/dist/ice/slice/IceGrid/FileParser.ice +36 -0
- data/dist/ice/slice/IceGrid/Registry.ice +130 -0
- data/dist/ice/slice/IceGrid/Session.ice +64 -0
- data/dist/ice/slice/IceGrid/UserAccountMapper.ice +34 -0
- data/dist/ice/slice/IceStorm/IceStorm.ice +186 -0
- data/dist/ice/slice/IceStorm/Metrics.ice +41 -0
- data/dist/lib/Glacier2/Metrics.rb +41 -0
- data/dist/lib/Glacier2/PermissionsVerifier.rb +61 -0
- data/dist/lib/Glacier2/Router.rb +73 -0
- data/dist/lib/Glacier2/SSLInfo.rb +64 -0
- data/dist/lib/Glacier2/Session.rb +187 -0
- data/dist/lib/Glacier2.rb +7 -0
- data/dist/lib/Ice/BuiltinSequences.rb +48 -0
- data/dist/lib/Ice/CompressBatch.rb +50 -0
- data/dist/lib/Ice/Context.rb +12 -0
- data/dist/lib/Ice/EndpointSelectionType.rb +49 -0
- data/dist/lib/Ice/EndpointTypes.rb +28 -0
- data/dist/lib/Ice/Exception.rb +20 -0
- data/dist/lib/Ice/Identity.rb +47 -0
- data/dist/lib/Ice/IdentitySpaceship.rb +16 -0
- data/dist/lib/Ice/InitializationData.rb +12 -0
- data/dist/lib/Ice/LocalExceptions.rb +168 -0
- data/dist/lib/Ice/Locator.rb +83 -0
- data/dist/lib/Ice/LocatorRegistry.rb +73 -0
- data/dist/lib/Ice/Metrics.rb +290 -0
- data/dist/lib/Ice/OperationMode.rb +58 -0
- data/dist/lib/Ice/Process.rb +34 -0
- data/dist/lib/Ice/PropertiesAdmin.rb +39 -0
- data/dist/lib/Ice/PropertyDict.rb +12 -0
- data/dist/lib/Ice/Proxy.rb +85 -0
- data/dist/lib/Ice/ProxyFunctions.rb +69 -0
- data/dist/lib/Ice/RemoteLogger.rb +176 -0
- data/dist/lib/Ice/ReplyStatus.rb +65 -0
- data/dist/lib/Ice/Router.rb +59 -0
- data/dist/lib/Ice/SliceChecksumDict.rb +12 -0
- data/dist/lib/Ice/SliceUtil.rb +41 -0
- data/dist/lib/Ice/Struct.rb +11 -0
- data/dist/lib/Ice/ToStringMode.rb +50 -0
- data/dist/lib/Ice/Value.rb +93 -0
- data/dist/lib/Ice/Version.rb +78 -0
- data/dist/lib/Ice.rb +37 -0
- data/dist/lib/IceBox/ServiceManager.rb +104 -0
- data/dist/lib/IceBox.rb +3 -0
- data/dist/lib/IceGrid/Admin.rb +1208 -0
- data/dist/lib/IceGrid/Descriptor.rb +989 -0
- data/dist/lib/IceGrid/Exception.rb +145 -0
- data/dist/lib/IceGrid/FileParser.rb +41 -0
- data/dist/lib/IceGrid/Registry.rb +168 -0
- data/dist/lib/IceGrid/Session.rb +56 -0
- data/dist/lib/IceGrid/UserAccountMapper.rb +38 -0
- data/dist/lib/IceGrid.rb +9 -0
- data/dist/lib/IceStorm/IceStorm.rb +251 -0
- data/dist/lib/IceStorm/Metrics.rb +55 -0
- data/dist/lib/IceStorm.rb +4 -0
- data/extconf.rb +89 -0
- data/ice.gemspec +22 -17
- data/scripts/slice2rb +10 -0
- metadata +536 -712
- data/ICE_LICENSE +0 -48
- data/LICENSE +0 -340
- data/MCPP_LICENSE +0 -29
- data/bin/slice2rb +0 -12
- data/ext/Communicator.cpp +0 -792
- data/ext/Communicator.h +0 -20
- data/ext/Config.h +0 -143
- data/ext/Connection.cpp +0 -532
- data/ext/Connection.h +0 -24
- data/ext/Endpoint.cpp +0 -340
- data/ext/Endpoint.h +0 -22
- data/ext/ImplicitContext.cpp +0 -144
- data/ext/ImplicitContext.h +0 -20
- data/ext/Init.cpp +0 -49
- data/ext/Logger.cpp +0 -147
- data/ext/Logger.h +0 -23
- data/ext/Operation.cpp +0 -661
- data/ext/Operation.h +0 -31
- data/ext/Properties.cpp +0 -365
- data/ext/Properties.h +0 -20
- data/ext/Proxy.cpp +0 -1396
- data/ext/Proxy.h +0 -22
- data/ext/Slice.cpp +0 -205
- data/ext/Slice.h +0 -17
- data/ext/Types.cpp +0 -3325
- data/ext/Types.h +0 -595
- data/ext/Util.cpp +0 -812
- data/ext/Util.h +0 -586
- data/ext/ValueFactoryManager.cpp +0 -441
- data/ext/ValueFactoryManager.h +0 -95
- data/ext/extconf.rb +0 -97
- data/ext/ice/cpp/include/Ice/Application.h +0 -326
- data/ext/ice/cpp/include/Ice/AsyncResult.h +0 -155
- data/ext/ice/cpp/include/Ice/AsyncResultF.h +0 -23
- data/ext/ice/cpp/include/Ice/BatchRequestInterceptor.h +0 -75
- data/ext/ice/cpp/include/Ice/BatchRequestQueueF.h +0 -20
- data/ext/ice/cpp/include/Ice/Buffer.h +0 -154
- data/ext/ice/cpp/include/Ice/CommunicatorAsync.h +0 -154
- data/ext/ice/cpp/include/Ice/Comparable.h +0 -205
- data/ext/ice/cpp/include/Ice/Config.h +0 -76
- data/ext/ice/cpp/include/Ice/ConnectionAsync.h +0 -302
- data/ext/ice/cpp/include/Ice/ConnectionIF.h +0 -38
- data/ext/ice/cpp/include/Ice/ConsoleUtil.h +0 -23
- data/ext/ice/cpp/include/Ice/DefaultValueFactory.h +0 -57
- data/ext/ice/cpp/include/Ice/DispatchInterceptor.h +0 -41
- data/ext/ice/cpp/include/Ice/Dispatcher.h +0 -67
- data/ext/ice/cpp/include/Ice/DynamicLibrary.h +0 -102
- data/ext/ice/cpp/include/Ice/DynamicLibraryF.h +0 -24
- data/ext/ice/cpp/include/Ice/Exception.h +0 -161
- data/ext/ice/cpp/include/Ice/ExceptionHelpers.h +0 -74
- data/ext/ice/cpp/include/Ice/FactoryTable.h +0 -73
- data/ext/ice/cpp/include/Ice/FactoryTableInit.h +0 -84
- data/ext/ice/cpp/include/Ice/Format.h +0 -38
- data/ext/ice/cpp/include/Ice/Functional.h +0 -140
- data/ext/ice/cpp/include/Ice/GCObject.h +0 -76
- data/ext/ice/cpp/include/Ice/Handle.h +0 -182
- data/ext/ice/cpp/include/Ice/Ice.h +0 -55
- data/ext/ice/cpp/include/Ice/IconvStringConverter.h +0 -377
- data/ext/ice/cpp/include/Ice/Incoming.h +0 -225
- data/ext/ice/cpp/include/Ice/IncomingAsync.h +0 -186
- data/ext/ice/cpp/include/Ice/IncomingAsyncF.h +0 -36
- data/ext/ice/cpp/include/Ice/Initialize.h +0 -957
- data/ext/ice/cpp/include/Ice/InputStream.h +0 -1514
- data/ext/ice/cpp/include/Ice/InstanceF.h +0 -20
- data/ext/ice/cpp/include/Ice/InterfaceByValue.h +0 -57
- data/ext/ice/cpp/include/Ice/LocalObject.h +0 -35
- data/ext/ice/cpp/include/Ice/LocalObjectF.h +0 -21
- data/ext/ice/cpp/include/Ice/LoggerUtil.h +0 -185
- data/ext/ice/cpp/include/Ice/MetricsAdminI.h +0 -715
- data/ext/ice/cpp/include/Ice/MetricsFunctional.h +0 -159
- data/ext/ice/cpp/include/Ice/MetricsObserverI.h +0 -669
- data/ext/ice/cpp/include/Ice/NativePropertiesAdmin.h +0 -86
- data/ext/ice/cpp/include/Ice/Object.h +0 -507
- data/ext/ice/cpp/include/Ice/ObjectF.h +0 -30
- data/ext/ice/cpp/include/Ice/ObserverHelper.h +0 -182
- data/ext/ice/cpp/include/Ice/Optional.h +0 -1114
- data/ext/ice/cpp/include/Ice/OutgoingAsync.h +0 -856
- data/ext/ice/cpp/include/Ice/OutgoingAsyncF.h +0 -39
- data/ext/ice/cpp/include/Ice/OutputStream.h +0 -1092
- data/ext/ice/cpp/include/Ice/Protocol.h +0 -274
- data/ext/ice/cpp/include/Ice/Proxy.h +0 -5154
- data/ext/ice/cpp/include/Ice/ProxyF.h +0 -53
- data/ext/ice/cpp/include/Ice/ProxyFactoryF.h +0 -21
- data/ext/ice/cpp/include/Ice/ProxyHandle.h +0 -318
- data/ext/ice/cpp/include/Ice/ReferenceF.h +0 -29
- data/ext/ice/cpp/include/Ice/RegisterPlugins.h +0 -127
- data/ext/ice/cpp/include/Ice/RequestHandlerF.h +0 -30
- data/ext/ice/cpp/include/Ice/ResponseHandlerF.h +0 -25
- data/ext/ice/cpp/include/Ice/SHA1.h +0 -40
- data/ext/ice/cpp/include/Ice/ServantManagerF.h +0 -21
- data/ext/ice/cpp/include/Ice/Service.h +0 -379
- data/ext/ice/cpp/include/Ice/SliceChecksums.h +0 -33
- data/ext/ice/cpp/include/Ice/SlicedData.h +0 -172
- data/ext/ice/cpp/include/Ice/SlicedDataF.h +0 -40
- data/ext/ice/cpp/include/Ice/StreamHelpers.h +0 -1190
- data/ext/ice/cpp/include/Ice/StringConverter.h +0 -78
- data/ext/ice/cpp/include/Ice/ThreadPoolF.h +0 -23
- data/ext/ice/cpp/include/Ice/UUID.h +0 -19
- data/ext/ice/cpp/include/Ice/UniquePtr.h +0 -95
- data/ext/ice/cpp/include/Ice/UniqueRef.h +0 -97
- data/ext/ice/cpp/include/Ice/UserExceptionFactory.h +0 -88
- data/ext/ice/cpp/include/Ice/Value.h +0 -139
- data/ext/ice/cpp/include/Ice/ValueF.h +0 -21
- data/ext/ice/cpp/include/IceSSL/Config.h +0 -21
- data/ext/ice/cpp/include/IceSSL/IceSSL.h +0 -24
- data/ext/ice/cpp/include/IceSSL/OpenSSL.h +0 -147
- data/ext/ice/cpp/include/IceSSL/Plugin.h +0 -712
- data/ext/ice/cpp/include/IceSSL/SChannel.h +0 -72
- data/ext/ice/cpp/include/IceSSL/SecureTransport.h +0 -72
- data/ext/ice/cpp/include/IceSSL/UWP.h +0 -62
- data/ext/ice/cpp/include/IceUtil/Atomic.h +0 -179
- 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/ConsoleUtil.h +0 -92
- data/ext/ice/cpp/include/IceUtil/CountDownLatch.h +0 -45
- data/ext/ice/cpp/include/IceUtil/CtrlCHandler.h +0 -92
- data/ext/ice/cpp/include/IceUtil/DisableWarnings.h +0 -44
- data/ext/ice/cpp/include/IceUtil/Exception.h +0 -394
- data/ext/ice/cpp/include/IceUtil/FileUtil.h +0 -140
- data/ext/ice/cpp/include/IceUtil/Functional.h +0 -389
- data/ext/ice/cpp/include/IceUtil/Handle.h +0 -261
- data/ext/ice/cpp/include/IceUtil/IceUtil.h +0 -40
- data/ext/ice/cpp/include/IceUtil/InputUtil.h +0 -42
- data/ext/ice/cpp/include/IceUtil/Iterator.h +0 -31
- data/ext/ice/cpp/include/IceUtil/Lock.h +0 -128
- data/ext/ice/cpp/include/IceUtil/Monitor.h +0 -243
- data/ext/ice/cpp/include/IceUtil/Mutex.h +0 -349
- data/ext/ice/cpp/include/IceUtil/MutexProtocol.h +0 -23
- data/ext/ice/cpp/include/IceUtil/MutexPtrLock.h +0 -78
- data/ext/ice/cpp/include/IceUtil/MutexPtrTryLock.h +0 -77
- data/ext/ice/cpp/include/IceUtil/Optional.h +0 -433
- data/ext/ice/cpp/include/IceUtil/Options.h +0 -135
- data/ext/ice/cpp/include/IceUtil/OutputUtil.h +0 -383
- data/ext/ice/cpp/include/IceUtil/PopDisableWarnings.h +0 -14
- data/ext/ice/cpp/include/IceUtil/PushDisableWarnings.h +0 -33
- data/ext/ice/cpp/include/IceUtil/Random.h +0 -55
- data/ext/ice/cpp/include/IceUtil/RecMutex.h +0 -107
- data/ext/ice/cpp/include/IceUtil/ResourceConfig.h +0 -37
- data/ext/ice/cpp/include/IceUtil/ScannerConfig.h +0 -40
- data/ext/ice/cpp/include/IceUtil/ScopedArray.h +0 -98
- data/ext/ice/cpp/include/IceUtil/Shared.h +0 -127
- data/ext/ice/cpp/include/IceUtil/StopWatch.h +0 -49
- data/ext/ice/cpp/include/IceUtil/StringConverter.h +0 -195
- data/ext/ice/cpp/include/IceUtil/StringUtil.h +0 -97
- data/ext/ice/cpp/include/IceUtil/Thread.h +0 -160
- data/ext/ice/cpp/include/IceUtil/ThreadException.h +0 -94
- data/ext/ice/cpp/include/IceUtil/Time.h +0 -205
- data/ext/ice/cpp/include/IceUtil/Timer.h +0 -144
- data/ext/ice/cpp/include/IceUtil/UUID.h +0 -21
- data/ext/ice/cpp/include/IceUtil/UndefSysMacros.h +0 -37
- 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/ACM.cpp +0 -380
- data/ext/ice/cpp/src/Ice/ACM.h +0 -119
- data/ext/ice/cpp/src/Ice/ACMF.h +0 -30
- data/ext/ice/cpp/src/Ice/Acceptor.cpp +0 -16
- data/ext/ice/cpp/src/Ice/Acceptor.h +0 -37
- data/ext/ice/cpp/src/Ice/AcceptorF.h +0 -25
- data/ext/ice/cpp/src/Ice/ArgVector.cpp +0 -59
- data/ext/ice/cpp/src/Ice/ArgVector.h +0 -36
- data/ext/ice/cpp/src/Ice/AsyncResult.cpp +0 -70
- data/ext/ice/cpp/src/Ice/Base64.cpp +0 -263
- data/ext/ice/cpp/src/Ice/Base64.h +0 -31
- data/ext/ice/cpp/src/Ice/BatchRequestQueue.cpp +0 -250
- data/ext/ice/cpp/src/Ice/BatchRequestQueue.h +0 -59
- data/ext/ice/cpp/src/Ice/Buffer.cpp +0 -155
- data/ext/ice/cpp/src/Ice/BuiltinSequences.cpp +0 -49
- data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.cpp +0 -407
- data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.h +0 -87
- 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/CommunicatorI.cpp +0 -586
- data/ext/ice/cpp/src/Ice/CommunicatorI.h +0 -167
- data/ext/ice/cpp/src/Ice/Cond.cpp +0 -381
- data/ext/ice/cpp/src/Ice/ConnectRequestHandler.cpp +0 -348
- data/ext/ice/cpp/src/Ice/ConnectRequestHandler.h +0 -72
- data/ext/ice/cpp/src/Ice/ConnectRequestHandlerF.h +0 -24
- 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/ConnectionFactory.cpp +0 -1972
- data/ext/ice/cpp/src/Ice/ConnectionFactory.h +0 -264
- data/ext/ice/cpp/src/Ice/ConnectionFactoryF.h +0 -30
- data/ext/ice/cpp/src/Ice/ConnectionI.cpp +0 -3670
- data/ext/ice/cpp/src/Ice/ConnectionI.h +0 -389
- data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.cpp +0 -73
- data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.h +0 -41
- data/ext/ice/cpp/src/Ice/Connector.cpp +0 -16
- data/ext/ice/cpp/src/Ice/Connector.h +0 -32
- data/ext/ice/cpp/src/Ice/ConnectorF.h +0 -21
- 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/DefaultsAndOverrides.cpp +0 -159
- data/ext/ice/cpp/src/Ice/DefaultsAndOverrides.h +0 -52
- data/ext/ice/cpp/src/Ice/DefaultsAndOverridesF.h +0 -21
- data/ext/ice/cpp/src/Ice/DispatchInterceptor.cpp +0 -37
- data/ext/ice/cpp/src/Ice/DynamicLibrary.cpp +0 -284
- 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/EndpointFactory.h +0 -117
- data/ext/ice/cpp/src/Ice/EndpointFactoryF.h +0 -21
- data/ext/ice/cpp/src/Ice/EndpointFactoryManager.cpp +0 -213
- data/ext/ice/cpp/src/Ice/EndpointFactoryManager.h +0 -47
- data/ext/ice/cpp/src/Ice/EndpointFactoryManagerF.h +0 -21
- data/ext/ice/cpp/src/Ice/EndpointI.cpp +0 -98
- data/ext/ice/cpp/src/Ice/EndpointI.h +0 -218
- data/ext/ice/cpp/src/Ice/EndpointIF.h +0 -49
- data/ext/ice/cpp/src/Ice/EndpointTypes.cpp +0 -51
- data/ext/ice/cpp/src/Ice/EventHandler.cpp +0 -32
- data/ext/ice/cpp/src/Ice/EventHandler.h +0 -81
- data/ext/ice/cpp/src/Ice/EventHandlerF.h +0 -24
- data/ext/ice/cpp/src/Ice/Exception.cpp +0 -818
- data/ext/ice/cpp/src/Ice/FacetMap.cpp +0 -49
- data/ext/ice/cpp/src/Ice/FactoryTable.cpp +0 -162
- data/ext/ice/cpp/src/Ice/FactoryTableInit.cpp +0 -88
- data/ext/ice/cpp/src/Ice/GCObject.cpp +0 -442
- data/ext/ice/cpp/src/Ice/HashUtil.h +0 -53
- data/ext/ice/cpp/src/Ice/HttpParser.cpp +0 -684
- data/ext/ice/cpp/src/Ice/HttpParser.h +0 -117
- data/ext/ice/cpp/src/Ice/IPEndpointI.cpp +0 -710
- data/ext/ice/cpp/src/Ice/IPEndpointI.h +0 -152
- data/ext/ice/cpp/src/Ice/IPEndpointIF.h +0 -28
- data/ext/ice/cpp/src/Ice/IconvStringConverter.cpp +0 -51
- 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/ImplicitContextI.cpp +0 -655
- data/ext/ice/cpp/src/Ice/ImplicitContextI.h +0 -48
- data/ext/ice/cpp/src/Ice/Incoming.cpp +0 -795
- data/ext/ice/cpp/src/Ice/IncomingAsync.cpp +0 -230
- data/ext/ice/cpp/src/Ice/IncomingRequest.h +0 -33
- data/ext/ice/cpp/src/Ice/Initialize.cpp +0 -654
- data/ext/ice/cpp/src/Ice/InputStream.cpp +0 -2741
- data/ext/ice/cpp/src/Ice/Instance.cpp +0 -1967
- data/ext/ice/cpp/src/Ice/Instance.h +0 -235
- 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/InstrumentationI.cpp +0 -1094
- data/ext/ice/cpp/src/Ice/InstrumentationI.h +0 -256
- data/ext/ice/cpp/src/Ice/LocalException.cpp +0 -3262
- data/ext/ice/cpp/src/Ice/LocalObject.cpp +0 -23
- 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/LocatorInfo.cpp +0 -889
- data/ext/ice/cpp/src/Ice/LocatorInfo.h +0 -189
- data/ext/ice/cpp/src/Ice/LocatorInfoF.h +0 -29
- data/ext/ice/cpp/src/Ice/Logger.cpp +0 -73
- data/ext/ice/cpp/src/Ice/LoggerAdminI.cpp +0 -956
- data/ext/ice/cpp/src/Ice/LoggerAdminI.h +0 -41
- data/ext/ice/cpp/src/Ice/LoggerF.cpp +0 -61
- data/ext/ice/cpp/src/Ice/LoggerI.cpp +0 -259
- data/ext/ice/cpp/src/Ice/LoggerI.h +0 -52
- data/ext/ice/cpp/src/Ice/LoggerUtil.cpp +0 -100
- 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/MetricsObserverI.cpp +0 -8
- data/ext/ice/cpp/src/Ice/Network.cpp +0 -2249
- data/ext/ice/cpp/src/Ice/Network.h +0 -289
- data/ext/ice/cpp/src/Ice/NetworkF.h +0 -19
- data/ext/ice/cpp/src/Ice/NetworkProxy.cpp +0 -311
- data/ext/ice/cpp/src/Ice/NetworkProxy.h +0 -72
- data/ext/ice/cpp/src/Ice/NetworkProxyF.h +0 -21
- data/ext/ice/cpp/src/Ice/OSLogLoggerI.cpp +0 -57
- data/ext/ice/cpp/src/Ice/OSLogLoggerI.h +0 -40
- data/ext/ice/cpp/src/Ice/Object.cpp +0 -435
- 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/ObjectAdapterFactory.cpp +0 -291
- data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.h +0 -53
- data/ext/ice/cpp/src/Ice/ObjectAdapterFactoryF.h +0 -25
- data/ext/ice/cpp/src/Ice/ObjectAdapterI.cpp +0 -1530
- data/ext/ice/cpp/src/Ice/ObjectAdapterI.h +0 -159
- data/ext/ice/cpp/src/Ice/ObjectFactory.cpp +0 -75
- data/ext/ice/cpp/src/Ice/ObserverHelper.cpp +0 -56
- data/ext/ice/cpp/src/Ice/OpaqueEndpointI.cpp +0 -408
- data/ext/ice/cpp/src/Ice/OpaqueEndpointI.h +0 -74
- data/ext/ice/cpp/src/Ice/OutgoingAsync.cpp +0 -1322
- data/ext/ice/cpp/src/Ice/OutputStream.cpp +0 -1367
- 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/PluginManagerI.h +0 -61
- 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/PropertiesAdminI.cpp +0 -265
- data/ext/ice/cpp/src/Ice/PropertiesAdminI.h +0 -64
- data/ext/ice/cpp/src/Ice/PropertiesF.cpp +0 -63
- data/ext/ice/cpp/src/Ice/PropertiesI.cpp +0 -739
- data/ext/ice/cpp/src/Ice/PropertiesI.h +0 -70
- 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/Protocol.cpp +0 -124
- data/ext/ice/cpp/src/Ice/ProtocolInstance.cpp +0 -131
- data/ext/ice/cpp/src/Ice/ProtocolInstance.h +0 -93
- data/ext/ice/cpp/src/Ice/ProtocolInstanceF.h +0 -21
- data/ext/ice/cpp/src/Ice/ProtocolPluginFacade.cpp +0 -51
- data/ext/ice/cpp/src/Ice/ProtocolPluginFacade.h +0 -64
- data/ext/ice/cpp/src/Ice/ProtocolPluginFacadeF.h +0 -21
- data/ext/ice/cpp/src/Ice/Proxy.cpp +0 -1601
- data/ext/ice/cpp/src/Ice/ProxyFactory.cpp +0 -300
- data/ext/ice/cpp/src/Ice/ProxyFactory.h +0 -57
- data/ext/ice/cpp/src/Ice/Reference.cpp +0 -2046
- data/ext/ice/cpp/src/Ice/Reference.h +0 -323
- data/ext/ice/cpp/src/Ice/ReferenceFactory.cpp +0 -888
- data/ext/ice/cpp/src/Ice/ReferenceFactory.h +0 -76
- data/ext/ice/cpp/src/Ice/ReferenceFactoryF.h +0 -19
- data/ext/ice/cpp/src/Ice/RegisterPluginsInit.cpp +0 -38
- data/ext/ice/cpp/src/Ice/RegisterPluginsInit.h +0 -20
- data/ext/ice/cpp/src/Ice/RemoteLogger.cpp +0 -1171
- data/ext/ice/cpp/src/Ice/ReplyStatus.h +0 -24
- data/ext/ice/cpp/src/Ice/RequestHandler.cpp +0 -37
- data/ext/ice/cpp/src/Ice/RequestHandler.h +0 -78
- data/ext/ice/cpp/src/Ice/RequestHandlerFactory.cpp +0 -77
- data/ext/ice/cpp/src/Ice/RequestHandlerFactory.h +0 -37
- data/ext/ice/cpp/src/Ice/ResponseHandler.cpp +0 -12
- data/ext/ice/cpp/src/Ice/ResponseHandler.h +0 -43
- data/ext/ice/cpp/src/Ice/RetryQueue.cpp +0 -157
- data/ext/ice/cpp/src/Ice/RetryQueue.h +0 -66
- data/ext/ice/cpp/src/Ice/RetryQueueF.h +0 -19
- 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/RouterInfo.cpp +0 -379
- data/ext/ice/cpp/src/Ice/RouterInfo.h +0 -152
- data/ext/ice/cpp/src/Ice/RouterInfoF.h +0 -25
- data/ext/ice/cpp/src/Ice/SHA1.cpp +0 -169
- data/ext/ice/cpp/src/Ice/Selector.cpp +0 -1525
- data/ext/ice/cpp/src/Ice/Selector.h +0 -292
- 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/ServantManager.cpp +0 -480
- data/ext/ice/cpp/src/Ice/ServantManager.h +0 -69
- data/ext/ice/cpp/src/Ice/SharedContext.h +0 -46
- data/ext/ice/cpp/src/Ice/SliceChecksumDict.cpp +0 -49
- data/ext/ice/cpp/src/Ice/SliceChecksums.cpp +0 -75
- data/ext/ice/cpp/src/Ice/SlicedData.cpp +0 -127
- data/ext/ice/cpp/src/Ice/StreamSocket.cpp +0 -519
- data/ext/ice/cpp/src/Ice/StreamSocket.h +0 -85
- data/ext/ice/cpp/src/Ice/StringConverterPlugin.cpp +0 -192
- data/ext/ice/cpp/src/Ice/StringUtil.h +0 -30
- data/ext/ice/cpp/src/Ice/SysLoggerI.cpp +0 -166
- data/ext/ice/cpp/src/Ice/SysLoggerI.h +0 -37
- data/ext/ice/cpp/src/Ice/SystemdJournalI.cpp +0 -66
- data/ext/ice/cpp/src/Ice/SystemdJournalI.h +0 -39
- data/ext/ice/cpp/src/Ice/TcpAcceptor.cpp +0 -234
- data/ext/ice/cpp/src/Ice/TcpAcceptor.h +0 -61
- data/ext/ice/cpp/src/Ice/TcpConnector.cpp +0 -127
- data/ext/ice/cpp/src/Ice/TcpConnector.h +0 -45
- data/ext/ice/cpp/src/Ice/TcpEndpointI.cpp +0 -385
- data/ext/ice/cpp/src/Ice/TcpEndpointI.h +0 -90
- data/ext/ice/cpp/src/Ice/TcpTransceiver.cpp +0 -135
- data/ext/ice/cpp/src/Ice/TcpTransceiver.h +0 -58
- data/ext/ice/cpp/src/Ice/Thread.cpp +0 -569
- data/ext/ice/cpp/src/Ice/ThreadPool.cpp +0 -1292
- data/ext/ice/cpp/src/Ice/ThreadPool.h +0 -393
- data/ext/ice/cpp/src/Ice/Timer.cpp +0 -263
- data/ext/ice/cpp/src/Ice/TraceLevels.cpp +0 -38
- data/ext/ice/cpp/src/Ice/TraceLevels.h +0 -45
- data/ext/ice/cpp/src/Ice/TraceLevelsF.h +0 -21
- data/ext/ice/cpp/src/Ice/TraceUtil.cpp +0 -478
- data/ext/ice/cpp/src/Ice/TraceUtil.h +0 -30
- data/ext/ice/cpp/src/Ice/Transceiver.cpp +0 -18
- data/ext/ice/cpp/src/Ice/Transceiver.h +0 -49
- data/ext/ice/cpp/src/Ice/TransceiverF.h +0 -33
- data/ext/ice/cpp/src/Ice/UdpConnector.cpp +0 -131
- data/ext/ice/cpp/src/Ice/UdpConnector.h +0 -45
- data/ext/ice/cpp/src/Ice/UdpEndpointI.cpp +0 -515
- data/ext/ice/cpp/src/Ice/UdpEndpointI.h +0 -95
- data/ext/ice/cpp/src/Ice/UdpTransceiver.cpp +0 -806
- data/ext/ice/cpp/src/Ice/UdpTransceiver.h +0 -96
- data/ext/ice/cpp/src/Ice/Value.cpp +0 -76
- data/ext/ice/cpp/src/Ice/ValueFactory.cpp +0 -83
- data/ext/ice/cpp/src/Ice/ValueFactoryManagerI.cpp +0 -61
- data/ext/ice/cpp/src/Ice/ValueFactoryManagerI.h +0 -37
- data/ext/ice/cpp/src/Ice/Version.cpp +0 -57
- data/ext/ice/cpp/src/Ice/VirtualShared.h +0 -38
- data/ext/ice/cpp/src/Ice/WSAcceptor.cpp +0 -92
- data/ext/ice/cpp/src/Ice/WSAcceptor.h +0 -52
- data/ext/ice/cpp/src/Ice/WSConnector.cpp +0 -102
- data/ext/ice/cpp/src/Ice/WSConnector.h +0 -43
- data/ext/ice/cpp/src/Ice/WSEndpoint.cpp +0 -508
- data/ext/ice/cpp/src/Ice/WSEndpoint.h +0 -93
- data/ext/ice/cpp/src/Ice/WSTransceiver.cpp +0 -1704
- data/ext/ice/cpp/src/Ice/WSTransceiver.h +0 -141
- 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/IceDiscovery/LocatorI.cpp +0 -265
- data/ext/ice/cpp/src/IceDiscovery/LocatorI.h +0 -109
- data/ext/ice/cpp/src/IceDiscovery/LookupI.cpp +0 -608
- data/ext/ice/cpp/src/IceDiscovery/LookupI.h +0 -228
- data/ext/ice/cpp/src/IceDiscovery/PluginI.cpp +0 -176
- data/ext/ice/cpp/src/IceDiscovery/PluginI.h +0 -36
- 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/IceLocatorDiscovery/Plugin.h +0 -47
- data/ext/ice/cpp/src/IceLocatorDiscovery/PluginI.cpp +0 -1048
- data/ext/ice/cpp/src/IceSSL/AcceptorI.cpp +0 -105
- data/ext/ice/cpp/src/IceSSL/AcceptorI.h +0 -52
- data/ext/ice/cpp/src/IceSSL/CertificateI.cpp +0 -301
- data/ext/ice/cpp/src/IceSSL/CertificateI.h +0 -64
- 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/ConnectorI.cpp +0 -102
- data/ext/ice/cpp/src/IceSSL/ConnectorI.h +0 -44
- data/ext/ice/cpp/src/IceSSL/EndpointI.cpp +0 -372
- data/ext/ice/cpp/src/IceSSL/EndpointI.h +0 -100
- data/ext/ice/cpp/src/IceSSL/EndpointInfo.cpp +0 -75
- data/ext/ice/cpp/src/IceSSL/Instance.cpp +0 -28
- data/ext/ice/cpp/src/IceSSL/Instance.h +0 -37
- data/ext/ice/cpp/src/IceSSL/InstanceF.h +0 -33
- data/ext/ice/cpp/src/IceSSL/OpenSSLCertificateI.cpp +0 -688
- data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.cpp +0 -1147
- data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.h +0 -59
- data/ext/ice/cpp/src/IceSSL/OpenSSLEngineF.h +0 -27
- data/ext/ice/cpp/src/IceSSL/OpenSSLPluginI.cpp +0 -127
- data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.cpp +0 -1092
- data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.h +0 -90
- data/ext/ice/cpp/src/IceSSL/OpenSSLUtil.cpp +0 -288
- data/ext/ice/cpp/src/IceSSL/OpenSSLUtil.h +0 -58
- data/ext/ice/cpp/src/IceSSL/PluginI.cpp +0 -246
- data/ext/ice/cpp/src/IceSSL/PluginI.h +0 -67
- data/ext/ice/cpp/src/IceSSL/RFC2253.cpp +0 -490
- data/ext/ice/cpp/src/IceSSL/RFC2253.h +0 -62
- data/ext/ice/cpp/src/IceSSL/SChannelCertificateI.cpp +0 -721
- data/ext/ice/cpp/src/IceSSL/SChannelEngine.cpp +0 -1283
- data/ext/ice/cpp/src/IceSSL/SChannelEngine.h +0 -123
- data/ext/ice/cpp/src/IceSSL/SChannelEngineF.h +0 -31
- data/ext/ice/cpp/src/IceSSL/SChannelPluginI.cpp +0 -73
- data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.cpp +0 -1174
- data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.h +0 -133
- data/ext/ice/cpp/src/IceSSL/SSLEngine.cpp +0 -313
- data/ext/ice/cpp/src/IceSSL/SSLEngine.h +0 -100
- data/ext/ice/cpp/src/IceSSL/SSLEngineF.h +0 -21
- data/ext/ice/cpp/src/IceSSL/SecureTransportCertificateI.cpp +0 -999
- data/ext/ice/cpp/src/IceSSL/SecureTransportEngine.cpp +0 -1308
- data/ext/ice/cpp/src/IceSSL/SecureTransportEngine.h +0 -59
- data/ext/ice/cpp/src/IceSSL/SecureTransportEngineF.h +0 -29
- data/ext/ice/cpp/src/IceSSL/SecureTransportPluginI.cpp +0 -75
- data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.cpp +0 -719
- data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.h +0 -92
- data/ext/ice/cpp/src/IceSSL/SecureTransportUtil.cpp +0 -868
- data/ext/ice/cpp/src/IceSSL/SecureTransportUtil.h +0 -45
- data/ext/ice/cpp/src/IceSSL/TrustManager.cpp +0 -236
- data/ext/ice/cpp/src/IceSSL/TrustManager.h +0 -46
- data/ext/ice/cpp/src/IceSSL/TrustManagerF.h +0 -21
- 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/IceSSL/Util.cpp +0 -192
- data/ext/ice/cpp/src/IceSSL/Util.h +0 -99
- data/ext/ice/cpp/src/IceUtil/ConsoleUtil.cpp +0 -157
- data/ext/ice/cpp/src/IceUtil/ConvertUTF.cpp +0 -472
- data/ext/ice/cpp/src/IceUtil/ConvertUTF.h +0 -147
- data/ext/ice/cpp/src/IceUtil/CtrlCHandler.cpp +0 -259
- data/ext/ice/cpp/src/IceUtil/FileUtil.cpp +0 -471
- data/ext/ice/cpp/src/IceUtil/InputUtil.cpp +0 -36
- data/ext/ice/cpp/src/IceUtil/MutexProtocol.cpp +0 -19
- data/ext/ice/cpp/src/IceUtil/Options.cpp +0 -1051
- data/ext/ice/cpp/src/IceUtil/OutputUtil.cpp +0 -609
- data/ext/ice/cpp/src/IceUtil/Random.cpp +0 -180
- data/ext/ice/cpp/src/IceUtil/RecMutex.cpp +0 -238
- data/ext/ice/cpp/src/IceUtil/Shared.cpp +0 -71
- data/ext/ice/cpp/src/IceUtil/StringConverter.cpp +0 -690
- data/ext/ice/cpp/src/IceUtil/StringUtil.cpp +0 -1135
- data/ext/ice/cpp/src/IceUtil/ThreadException.cpp +0 -130
- data/ext/ice/cpp/src/IceUtil/Time.cpp +0 -307
- data/ext/ice/cpp/src/IceUtil/UUID.cpp +0 -165
- data/ext/ice/cpp/src/IceUtil/Unicode.cpp +0 -183
- data/ext/ice/cpp/src/IceUtil/Unicode.h +0 -43
- data/ext/ice/cpp/src/IceUtil/UtilException.cpp +0 -839
- data/ext/ice/cpp/src/Slice/CPlusPlusUtil.cpp +0 -1810
- data/ext/ice/cpp/src/Slice/CPlusPlusUtil.h +0 -72
- data/ext/ice/cpp/src/Slice/Checksum.cpp +0 -447
- data/ext/ice/cpp/src/Slice/Checksum.h +0 -21
- data/ext/ice/cpp/src/Slice/FileTracker.cpp +0 -146
- data/ext/ice/cpp/src/Slice/FileTracker.h +0 -66
- data/ext/ice/cpp/src/Slice/Grammar.cpp +0 -4793
- data/ext/ice/cpp/src/Slice/Grammar.h +0 -118
- data/ext/ice/cpp/src/Slice/GrammarUtil.h +0 -228
- data/ext/ice/cpp/src/Slice/JavaUtil.cpp +0 -5176
- data/ext/ice/cpp/src/Slice/JavaUtil.h +0 -407
- data/ext/ice/cpp/src/Slice/MD5.cpp +0 -52
- data/ext/ice/cpp/src/Slice/MD5.h +0 -39
- data/ext/ice/cpp/src/Slice/MD5I.cpp +0 -393
- data/ext/ice/cpp/src/Slice/MD5I.h +0 -91
- data/ext/ice/cpp/src/Slice/PHPUtil.cpp +0 -157
- data/ext/ice/cpp/src/Slice/PHPUtil.h +0 -36
- data/ext/ice/cpp/src/Slice/Parser.cpp +0 -7058
- data/ext/ice/cpp/src/Slice/Parser.h +0 -1174
- data/ext/ice/cpp/src/Slice/Preprocessor.cpp +0 -797
- data/ext/ice/cpp/src/Slice/Preprocessor.h +0 -60
- data/ext/ice/cpp/src/Slice/Python.cpp +0 -830
- data/ext/ice/cpp/src/Slice/PythonUtil.cpp +0 -3439
- data/ext/ice/cpp/src/Slice/PythonUtil.h +0 -70
- data/ext/ice/cpp/src/Slice/Ruby.cpp +0 -350
- data/ext/ice/cpp/src/Slice/RubyUtil.cpp +0 -1571
- data/ext/ice/cpp/src/Slice/RubyUtil.h +0 -49
- data/ext/ice/cpp/src/Slice/Scanner.cpp +0 -2807
- data/ext/ice/cpp/src/Slice/SliceUtil.cpp +0 -424
- data/ext/ice/cpp/src/Slice/StringLiteralUtil.cpp +0 -456
- data/ext/ice/cpp/src/Slice/Util.h +0 -50
- 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/internal.H +0 -530
- data/ext/ice/mcpp/mcpp.gyp +0 -88
- 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/Glacier2.rb +0 -7
- 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/Ice.rb +0 -673
- data/lib/IceBox/IceBox.rb +0 -164
- data/lib/IceBox.rb +0 -5
- 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/IceGrid.rb +0 -9
- data/lib/IcePatch2/FileInfo.rb +0 -115
- data/lib/IcePatch2/FileServer.rb +0 -123
- data/lib/IcePatch2.rb +0 -5
- data/lib/IceStorm/IceStorm.rb +0 -332
- data/lib/IceStorm/Metrics.rb +0 -73
- data/lib/IceStorm.rb +0 -6
- data/slice/Glacier2/Metrics.ice +0 -88
- data/slice/Glacier2/PermissionsVerifier.ice +0 -111
- data/slice/Glacier2/PermissionsVerifierF.ice +0 -30
- data/slice/Glacier2/Router.ice +0 -186
- data/slice/Glacier2/RouterF.ice +0 -29
- data/slice/Glacier2/SSLInfo.ice +0 -59
- data/slice/Glacier2/Session.ice +0 -274
- data/slice/Ice/BuiltinSequences.ice +0 -59
- data/slice/Ice/Communicator.ice +0 -676
- data/slice/Ice/CommunicatorF.ice +0 -31
- data/slice/Ice/Connection.ice +0 -516
- data/slice/Ice/ConnectionF.ice +0 -33
- data/slice/Ice/Current.ice +0 -170
- data/slice/Ice/Endpoint.ice +0 -291
- data/slice/Ice/EndpointF.ice +0 -43
- data/slice/Ice/EndpointTypes.ice +0 -48
- data/slice/Ice/FacetMap.ice +0 -36
- data/slice/Ice/Identity.ice +0 -75
- data/slice/Ice/ImplicitContext.ice +0 -119
- data/slice/Ice/ImplicitContextF.ice +0 -30
- data/slice/Ice/Instrumentation.ice +0 -509
- data/slice/Ice/InstrumentationF.ice +0 -38
- data/slice/Ice/LocalException.ice +0 -1040
- data/slice/Ice/Locator.ice +0 -239
- data/slice/Ice/LocatorF.ice +0 -32
- data/slice/Ice/Logger.ice +0 -99
- data/slice/Ice/LoggerF.ice +0 -31
- data/slice/Ice/Metrics.ice +0 -436
- data/slice/Ice/ObjectAdapter.ice +0 -710
- data/slice/Ice/ObjectAdapterF.ice +0 -31
- data/slice/Ice/ObjectFactory.ice +0 -71
- data/slice/Ice/Plugin.ice +0 -131
- data/slice/Ice/PluginF.ice +0 -36
- data/slice/Ice/Process.ice +0 -64
- data/slice/Ice/ProcessF.ice +0 -31
- data/slice/Ice/Properties.ice +0 -244
- data/slice/Ice/PropertiesAdmin.ice +0 -87
- data/slice/Ice/PropertiesF.ice +0 -32
- data/slice/Ice/RemoteLogger.ice +0 -226
- data/slice/Ice/Router.ice +0 -103
- data/slice/Ice/RouterF.ice +0 -31
- data/slice/Ice/ServantLocator.ice +0 -136
- data/slice/Ice/ServantLocatorF.ice +0 -31
- data/slice/Ice/SliceChecksumDict.ice +0 -36
- data/slice/Ice/ValueFactory.ice +0 -133
- data/slice/Ice/Version.ice +0 -51
- data/slice/IceBT/ConnectionInfo.ice +0 -59
- data/slice/IceBT/EndpointInfo.ice +0 -57
- data/slice/IceBT/Types.ice +0 -45
- data/slice/IceBox/IceBox.ice +0 -216
- data/slice/IceDiscovery/IceDiscovery.ice +0 -98
- data/slice/IceGrid/Admin.ice +0 -1957
- data/slice/IceGrid/Descriptor.ice +0 -1094
- data/slice/IceGrid/Exception.ice +0 -396
- data/slice/IceGrid/FileParser.ice +0 -72
- data/slice/IceGrid/PluginFacade.ice +0 -329
- data/slice/IceGrid/Registry.ice +0 -269
- data/slice/IceGrid/Session.ice +0 -128
- data/slice/IceGrid/UserAccountMapper.ice +0 -69
- data/slice/IceIAP/ConnectionInfo.ice +0 -74
- data/slice/IceIAP/EndpointInfo.ice +0 -68
- data/slice/IceLocatorDiscovery/IceLocatorDiscovery.ice +0 -83
- data/slice/IcePatch2/FileInfo.ice +0 -85
- data/slice/IcePatch2/FileServer.ice +0 -191
- 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/slice/IceStorm/Metrics.ice +0 -83
- /data/{ext → dist}/ice/mcpp/config.h +0 -0
- /data/{ext → dist}/ice/mcpp/configed.H +0 -0
- /data/{ext → dist}/ice/mcpp/directive.c +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/ice/mcpp/main.c → dist/ice/mcpp/mcpp_main.c} +0 -0
- /data/{ext → dist}/ice/mcpp/mcpp_out.h +0 -0
- /data/{ext → dist}/ice/mcpp/support.c +0 -0
- /data/{ext → dist}/ice/mcpp/system.H +0 -0
|
@@ -1,3262 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
|
-
//
|
|
4
|
-
//
|
|
5
|
-
// Ice version 3.7.10
|
|
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 < 10
|
|
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
|