zeroc-ice 3.7.11 → 3.8.1

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