zeroc-ice 3.7.3 → 3.7.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (227) hide show
  1. checksums.yaml +4 -4
  2. data/ext/Communicator.cpp +3 -0
  3. data/ext/Config.h +11 -0
  4. data/ext/Types.cpp +18 -2
  5. data/ext/Util.cpp +15 -3
  6. data/ext/Util.h +36 -0
  7. data/ext/ice/cpp/include/Ice/Exception.h +3 -3
  8. data/ext/ice/cpp/include/Ice/Functional.h +3 -1
  9. data/ext/ice/cpp/include/Ice/IconvStringConverter.h +1 -1
  10. data/ext/ice/cpp/include/Ice/Initialize.h +1 -1
  11. data/ext/ice/cpp/include/Ice/Object.h +7 -0
  12. data/ext/ice/cpp/include/Ice/Optional.h +1 -1
  13. data/ext/ice/cpp/include/Ice/OutgoingAsync.h +15 -0
  14. data/ext/ice/cpp/include/Ice/Proxy.h +56 -25
  15. data/ext/ice/cpp/include/Ice/Service.h +1 -1
  16. data/ext/ice/cpp/include/IceSSL/Plugin.h +142 -0
  17. data/ext/ice/cpp/include/IceUtil/Config.h +3 -2
  18. data/ext/ice/cpp/include/IceUtil/Functional.h +3 -1
  19. data/ext/ice/cpp/include/IceUtil/MutexPtrLock.h +4 -4
  20. data/ext/ice/cpp/include/IceUtil/ResourceConfig.h +2 -2
  21. data/ext/ice/cpp/include/generated/Ice/BuiltinSequences.h +2 -2
  22. data/ext/ice/cpp/include/generated/Ice/Communicator.h +10 -4
  23. data/ext/ice/cpp/include/generated/Ice/CommunicatorF.h +2 -2
  24. data/ext/ice/cpp/include/generated/Ice/Connection.h +58 -15
  25. data/ext/ice/cpp/include/generated/Ice/ConnectionF.h +2 -2
  26. data/ext/ice/cpp/include/generated/Ice/Current.h +2 -2
  27. data/ext/ice/cpp/include/generated/Ice/Endpoint.h +50 -14
  28. data/ext/ice/cpp/include/generated/Ice/EndpointF.h +2 -2
  29. data/ext/ice/cpp/include/generated/Ice/EndpointTypes.h +2 -2
  30. data/ext/ice/cpp/include/generated/Ice/FacetMap.h +2 -2
  31. data/ext/ice/cpp/include/generated/Ice/Identity.h +2 -2
  32. data/ext/ice/cpp/include/generated/Ice/ImplicitContext.h +8 -2
  33. data/ext/ice/cpp/include/generated/Ice/ImplicitContextF.h +2 -2
  34. data/ext/ice/cpp/include/generated/Ice/Instrumentation.h +62 -2
  35. data/ext/ice/cpp/include/generated/Ice/InstrumentationF.h +2 -2
  36. data/ext/ice/cpp/include/generated/Ice/LocalException.h +523 -127
  37. data/ext/ice/cpp/include/generated/Ice/Locator.h +62 -14
  38. data/ext/ice/cpp/include/generated/Ice/LocatorF.h +2 -2
  39. data/ext/ice/cpp/include/generated/Ice/Logger.h +8 -2
  40. data/ext/ice/cpp/include/generated/Ice/LoggerF.h +2 -2
  41. data/ext/ice/cpp/include/generated/Ice/Metrics.h +79 -27
  42. data/ext/ice/cpp/include/generated/Ice/ObjectAdapter.h +8 -2
  43. data/ext/ice/cpp/include/generated/Ice/ObjectAdapterF.h +2 -2
  44. data/ext/ice/cpp/include/generated/Ice/ObjectFactory.h +8 -2
  45. data/ext/ice/cpp/include/generated/Ice/Plugin.h +14 -2
  46. data/ext/ice/cpp/include/generated/Ice/PluginF.h +2 -2
  47. data/ext/ice/cpp/include/generated/Ice/Process.h +10 -4
  48. data/ext/ice/cpp/include/generated/Ice/ProcessF.h +2 -2
  49. data/ext/ice/cpp/include/generated/Ice/Properties.h +8 -2
  50. data/ext/ice/cpp/include/generated/Ice/PropertiesAdmin.h +11 -5
  51. data/ext/ice/cpp/include/generated/Ice/PropertiesF.h +2 -2
  52. data/ext/ice/cpp/include/generated/Ice/RemoteLogger.h +26 -8
  53. data/ext/ice/cpp/include/generated/Ice/Router.h +18 -6
  54. data/ext/ice/cpp/include/generated/Ice/RouterF.h +2 -2
  55. data/ext/ice/cpp/include/generated/Ice/ServantLocator.h +8 -2
  56. data/ext/ice/cpp/include/generated/Ice/ServantLocatorF.h +2 -2
  57. data/ext/ice/cpp/include/generated/Ice/SliceChecksumDict.h +2 -2
  58. data/ext/ice/cpp/include/generated/Ice/ValueFactory.h +14 -2
  59. data/ext/ice/cpp/include/generated/Ice/Version.h +2 -2
  60. data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfo.h +10 -5
  61. data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfoF.h +2 -2
  62. data/ext/ice/cpp/include/generated/IceSSL/EndpointInfo.h +8 -3
  63. data/ext/ice/cpp/src/Ice/ArgVector.cpp +1 -1
  64. data/ext/ice/cpp/src/Ice/BuiltinSequences.cpp +2 -2
  65. data/ext/ice/cpp/src/Ice/Communicator.cpp +2 -2
  66. data/ext/ice/cpp/src/Ice/CommunicatorF.cpp +2 -2
  67. data/ext/ice/cpp/src/Ice/Connection.cpp +2 -2
  68. data/ext/ice/cpp/src/Ice/ConnectionF.cpp +2 -2
  69. data/ext/ice/cpp/src/Ice/ConnectionFactory.cpp +3 -3
  70. data/ext/ice/cpp/src/Ice/Current.cpp +2 -2
  71. data/ext/ice/cpp/src/Ice/Endpoint.cpp +2 -2
  72. data/ext/ice/cpp/src/Ice/EndpointF.cpp +2 -2
  73. data/ext/ice/cpp/src/Ice/EndpointTypes.cpp +2 -2
  74. data/ext/ice/cpp/src/Ice/FacetMap.cpp +2 -2
  75. data/ext/ice/cpp/src/Ice/Identity.cpp +2 -2
  76. data/ext/ice/cpp/src/Ice/ImplicitContext.cpp +2 -2
  77. data/ext/ice/cpp/src/Ice/ImplicitContextF.cpp +2 -2
  78. data/ext/ice/cpp/src/Ice/ImplicitContextI.cpp +1 -1
  79. data/ext/ice/cpp/src/Ice/Initialize.cpp +1 -1
  80. data/ext/ice/cpp/src/Ice/InputStream.cpp +29 -14
  81. data/ext/ice/cpp/src/Ice/Instance.cpp +3 -0
  82. data/ext/ice/cpp/src/Ice/Instance.h +2 -0
  83. data/ext/ice/cpp/src/Ice/Instrumentation.cpp +2 -2
  84. data/ext/ice/cpp/src/Ice/InstrumentationF.cpp +2 -2
  85. data/ext/ice/cpp/src/Ice/LocalException.cpp +398 -2
  86. data/ext/ice/cpp/src/Ice/Locator.cpp +32 -2
  87. data/ext/ice/cpp/src/Ice/LocatorF.cpp +2 -2
  88. data/ext/ice/cpp/src/Ice/LocatorInfo.cpp +3 -3
  89. data/ext/ice/cpp/src/Ice/Logger.cpp +2 -2
  90. data/ext/ice/cpp/src/Ice/LoggerF.cpp +2 -2
  91. data/ext/ice/cpp/src/Ice/Metrics.cpp +8 -2
  92. data/ext/ice/cpp/src/Ice/Network.cpp +1 -1
  93. data/ext/ice/cpp/src/Ice/Network.h +0 -0
  94. data/ext/ice/cpp/src/Ice/ObjectAdapter.cpp +2 -2
  95. data/ext/ice/cpp/src/Ice/ObjectAdapterF.cpp +2 -2
  96. data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.cpp +4 -4
  97. data/ext/ice/cpp/src/Ice/ObjectAdapterI.cpp +8 -8
  98. data/ext/ice/cpp/src/Ice/ObjectFactory.cpp +2 -2
  99. data/ext/ice/cpp/src/Ice/Plugin.cpp +2 -2
  100. data/ext/ice/cpp/src/Ice/PluginF.cpp +2 -2
  101. data/ext/ice/cpp/src/Ice/Process.cpp +2 -2
  102. data/ext/ice/cpp/src/Ice/ProcessF.cpp +2 -2
  103. data/ext/ice/cpp/src/Ice/Properties.cpp +2 -2
  104. data/ext/ice/cpp/src/Ice/PropertiesAdmin.cpp +2 -2
  105. data/ext/ice/cpp/src/Ice/PropertiesF.cpp +2 -2
  106. data/ext/ice/cpp/src/Ice/PropertyNames.cpp +6 -3
  107. data/ext/ice/cpp/src/Ice/PropertyNames.h +1 -1
  108. data/ext/ice/cpp/src/Ice/ProxyFactory.cpp +9 -0
  109. data/ext/ice/cpp/src/Ice/RemoteLogger.cpp +8 -2
  110. data/ext/ice/cpp/src/Ice/RetryQueue.cpp +5 -2
  111. data/ext/ice/cpp/src/Ice/Router.cpp +2 -2
  112. data/ext/ice/cpp/src/Ice/RouterF.cpp +2 -2
  113. data/ext/ice/cpp/src/Ice/RouterInfo.cpp +6 -2
  114. data/ext/ice/cpp/src/Ice/SHA1.cpp +2 -0
  115. data/ext/ice/cpp/src/Ice/ServantLocator.cpp +2 -2
  116. data/ext/ice/cpp/src/Ice/ServantLocatorF.cpp +2 -2
  117. data/ext/ice/cpp/src/Ice/SliceChecksumDict.cpp +2 -2
  118. data/ext/ice/cpp/src/Ice/StreamSocket.cpp +0 -0
  119. data/ext/ice/cpp/src/Ice/Thread.cpp +2 -2
  120. data/ext/ice/cpp/src/Ice/ThreadPool.cpp +5 -1
  121. data/ext/ice/cpp/src/Ice/ThreadPool.h +0 -4
  122. data/ext/ice/cpp/src/Ice/UdpTransceiver.cpp +0 -0
  123. data/ext/ice/cpp/src/Ice/ValueFactory.cpp +2 -2
  124. data/ext/ice/cpp/src/Ice/Version.cpp +2 -2
  125. data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.cpp +2 -2
  126. data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.h +491 -6
  127. data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.cpp +2 -2
  128. data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.h +16 -4
  129. data/ext/ice/cpp/src/IceLocatorDiscovery/PluginI.cpp +12 -1
  130. data/ext/ice/cpp/src/IceSSL/CertificateI.cpp +23 -1
  131. data/ext/ice/cpp/src/IceSSL/ConnectionInfo.cpp +2 -2
  132. data/ext/ice/cpp/src/IceSSL/ConnectionInfoF.cpp +2 -2
  133. data/ext/ice/cpp/src/IceSSL/EndpointInfo.cpp +2 -2
  134. data/ext/ice/cpp/src/IceSSL/OpenSSLCertificateI.cpp +124 -19
  135. data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.cpp +60 -1
  136. data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.cpp +105 -2
  137. data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.h +1 -0
  138. data/ext/ice/cpp/src/IceSSL/OpenSSLUtil.cpp +2 -0
  139. data/ext/ice/cpp/src/IceSSL/PluginI.cpp +114 -0
  140. data/ext/ice/cpp/src/IceSSL/PluginI.h +21 -0
  141. data/ext/ice/cpp/src/IceSSL/SChannelCertificateI.cpp +142 -1
  142. data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.cpp +117 -3
  143. data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.h +1 -0
  144. data/ext/ice/cpp/src/IceSSL/SSLEngine.cpp +20 -1
  145. data/ext/ice/cpp/src/IceSSL/SSLEngine.h +4 -0
  146. data/ext/ice/cpp/src/IceSSL/SecureTransportCertificateI.cpp +133 -2
  147. data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.cpp +151 -89
  148. data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.h +1 -0
  149. data/ext/ice/cpp/src/IceSSL/Util.cpp +0 -0
  150. data/ext/ice/cpp/src/IceUtil/StringConverter.cpp +6 -0
  151. data/ext/ice/cpp/src/IceUtil/Time.cpp +8 -10
  152. data/ext/ice/cpp/src/Slice/CPlusPlusUtil.cpp +6 -2
  153. data/ext/ice/cpp/src/Slice/JavaUtil.cpp +12 -4
  154. data/ext/ice/cpp/src/Slice/PHPUtil.cpp +4 -0
  155. data/ext/ice/cpp/src/Slice/Parser.cpp +11 -7
  156. data/ext/ice/cpp/src/Slice/Parser.h +2 -2
  157. data/ext/ice/cpp/src/Slice/Preprocessor.cpp +12 -0
  158. data/ext/ice/cpp/src/Slice/Preprocessor.h +1 -1
  159. data/ext/ice/cpp/src/Slice/Python.cpp +1 -1
  160. data/ext/ice/cpp/src/Slice/PythonUtil.cpp +17 -5
  161. data/ext/ice/cpp/src/Slice/Scanner.cpp +621 -369
  162. data/ext/ice/mcpp/CMakeLists.txt +80 -0
  163. data/ext/ice/mcpp/expand.c +6 -6
  164. data/ice.gemspec +1 -1
  165. data/lib/Glacier2/Metrics.rb +1 -1
  166. data/lib/Glacier2/PermissionsVerifier.rb +1 -1
  167. data/lib/Glacier2/PermissionsVerifierF.rb +1 -1
  168. data/lib/Glacier2/Router.rb +1 -1
  169. data/lib/Glacier2/RouterF.rb +1 -1
  170. data/lib/Glacier2/SSLInfo.rb +1 -1
  171. data/lib/Glacier2/Session.rb +1 -1
  172. data/lib/Ice/BuiltinSequences.rb +1 -1
  173. data/lib/Ice/Communicator.rb +1 -1
  174. data/lib/Ice/CommunicatorF.rb +1 -1
  175. data/lib/Ice/Connection.rb +1 -1
  176. data/lib/Ice/ConnectionF.rb +1 -1
  177. data/lib/Ice/Current.rb +1 -1
  178. data/lib/Ice/Endpoint.rb +1 -1
  179. data/lib/Ice/EndpointF.rb +1 -1
  180. data/lib/Ice/EndpointTypes.rb +1 -1
  181. data/lib/Ice/FacetMap.rb +1 -1
  182. data/lib/Ice/Identity.rb +1 -1
  183. data/lib/Ice/ImplicitContext.rb +1 -1
  184. data/lib/Ice/ImplicitContextF.rb +1 -1
  185. data/lib/Ice/Instrumentation.rb +1 -1
  186. data/lib/Ice/InstrumentationF.rb +1 -1
  187. data/lib/Ice/LocalException.rb +1 -1
  188. data/lib/Ice/Locator.rb +1 -1
  189. data/lib/Ice/LocatorF.rb +1 -1
  190. data/lib/Ice/Logger.rb +1 -1
  191. data/lib/Ice/LoggerF.rb +1 -1
  192. data/lib/Ice/Metrics.rb +1 -1
  193. data/lib/Ice/ObjectAdapter.rb +1 -1
  194. data/lib/Ice/ObjectAdapterF.rb +1 -1
  195. data/lib/Ice/ObjectFactory.rb +1 -1
  196. data/lib/Ice/Plugin.rb +1 -1
  197. data/lib/Ice/PluginF.rb +1 -1
  198. data/lib/Ice/Process.rb +1 -1
  199. data/lib/Ice/ProcessF.rb +1 -1
  200. data/lib/Ice/Properties.rb +1 -1
  201. data/lib/Ice/PropertiesAdmin.rb +1 -1
  202. data/lib/Ice/PropertiesF.rb +1 -1
  203. data/lib/Ice/RemoteLogger.rb +1 -1
  204. data/lib/Ice/Router.rb +1 -1
  205. data/lib/Ice/RouterF.rb +1 -1
  206. data/lib/Ice/ServantLocator.rb +1 -1
  207. data/lib/Ice/ServantLocatorF.rb +1 -1
  208. data/lib/Ice/SliceChecksumDict.rb +1 -1
  209. data/lib/Ice/ValueFactory.rb +1 -1
  210. data/lib/Ice/Version.rb +1 -1
  211. data/lib/IceBox/IceBox.rb +1 -1
  212. data/lib/IceGrid/Admin.rb +1 -1
  213. data/lib/IceGrid/Descriptor.rb +1 -1
  214. data/lib/IceGrid/Exception.rb +1 -1
  215. data/lib/IceGrid/FileParser.rb +1 -1
  216. data/lib/IceGrid/PluginFacade.rb +1 -1
  217. data/lib/IceGrid/Registry.rb +1 -1
  218. data/lib/IceGrid/Session.rb +1 -1
  219. data/lib/IceGrid/UserAccountMapper.rb +1 -1
  220. data/lib/IcePatch2/FileInfo.rb +1 -1
  221. data/lib/IcePatch2/FileServer.rb +1 -1
  222. data/lib/IceStorm/IceStorm.rb +1 -1
  223. data/lib/IceStorm/Metrics.rb +1 -1
  224. data/slice/Ice/Communicator.ice +1 -1
  225. data/slice/IceBox/IceBox.ice +17 -2
  226. data/slice/IceDiscovery/IceDiscovery.ice +56 -0
  227. metadata +4 -4
@@ -2,7 +2,7 @@
2
2
  // Copyright (c) ZeroC, Inc. All rights reserved.
3
3
  //
4
4
  //
5
- // Ice version 3.7.3
5
+ // Ice version 3.7.7
6
6
  //
7
7
  // <auto-generated>
8
8
  //
@@ -38,7 +38,7 @@
38
38
  # if ICE_INT_VERSION % 100 >= 50
39
39
  # error Beta header file detected
40
40
  # endif
41
- # if ICE_INT_VERSION % 100 < 3
41
+ # if ICE_INT_VERSION % 100 < 7
42
42
  # error Ice patch level mismatch!
43
43
  # endif
44
44
  #endif
@@ -145,7 +145,7 @@ public:
145
145
  * @param compress Specifies whether or not compression should be used if available when using this endpoint.
146
146
  */
147
147
  EndpointInfo(const ::std::shared_ptr<::Ice::EndpointInfo>& underlying, int timeout, bool compress) :
148
- underlying(::std::move(underlying)),
148
+ underlying(underlying),
149
149
  timeout(timeout),
150
150
  compress(compress)
151
151
  {
@@ -240,10 +240,10 @@ public:
240
240
  * @param sourceAddress The source IP address.
241
241
  */
242
242
  IPEndpointInfo(const ::std::shared_ptr<::Ice::EndpointInfo>& underlying, int timeout, bool compress, const ::std::string& host, int port, const ::std::string& sourceAddress) :
243
- EndpointInfo(::std::move(underlying), timeout, compress),
244
- host(::std::move(host)),
243
+ EndpointInfo(underlying, timeout, compress),
244
+ host(host),
245
245
  port(port),
246
- sourceAddress(::std::move(sourceAddress))
246
+ sourceAddress(sourceAddress)
247
247
  {
248
248
  }
249
249
 
@@ -289,7 +289,7 @@ public:
289
289
  * @param sourceAddress The source IP address.
290
290
  */
291
291
  TCPEndpointInfo(const ::std::shared_ptr<::Ice::EndpointInfo>& underlying, int timeout, bool compress, const ::std::string& host, int port, const ::std::string& sourceAddress) :
292
- IPEndpointInfo(::std::move(underlying), timeout, compress, ::std::move(host), port, ::std::move(sourceAddress))
292
+ IPEndpointInfo(underlying, timeout, compress, host, port, sourceAddress)
293
293
  {
294
294
  }
295
295
  };
@@ -324,8 +324,8 @@ public:
324
324
  * @param mcastTtl The multicast time-to-live (or hops).
325
325
  */
326
326
  UDPEndpointInfo(const ::std::shared_ptr<::Ice::EndpointInfo>& underlying, int timeout, bool compress, const ::std::string& host, int port, const ::std::string& sourceAddress, const ::std::string& mcastInterface, int mcastTtl) :
327
- IPEndpointInfo(::std::move(underlying), timeout, compress, ::std::move(host), port, ::std::move(sourceAddress)),
328
- mcastInterface(::std::move(mcastInterface)),
327
+ IPEndpointInfo(underlying, timeout, compress, host, port, sourceAddress),
328
+ mcastInterface(mcastInterface),
329
329
  mcastTtl(mcastTtl)
330
330
  {
331
331
  }
@@ -365,8 +365,8 @@ public:
365
365
  * @param resource The URI configured with the endpoint.
366
366
  */
367
367
  WSEndpointInfo(const ::std::shared_ptr<::Ice::EndpointInfo>& underlying, int timeout, bool compress, const ::std::string& resource) :
368
- EndpointInfo(::std::move(underlying), timeout, compress),
369
- resource(::std::move(resource))
368
+ EndpointInfo(underlying, timeout, compress),
369
+ resource(resource)
370
370
  {
371
371
  }
372
372
 
@@ -403,9 +403,9 @@ public:
403
403
  * @param rawBytes The raw encoding of the opaque endpoint.
404
404
  */
405
405
  OpaqueEndpointInfo(const ::std::shared_ptr<::Ice::EndpointInfo>& underlying, int timeout, bool compress, const ::Ice::EncodingVersion& rawEncoding, const ::Ice::ByteSeq& rawBytes) :
406
- EndpointInfo(::std::move(underlying), timeout, compress),
407
- rawEncoding(::std::move(rawEncoding)),
408
- rawBytes(::std::move(rawBytes))
406
+ EndpointInfo(underlying, timeout, compress),
407
+ rawEncoding(rawEncoding),
408
+ rawBytes(rawBytes)
409
409
  {
410
410
  }
411
411
 
@@ -581,6 +581,11 @@ public:
581
581
  {
582
582
  }
583
583
 
584
+ #ifdef ICE_CPP11_COMPILER
585
+ EndpointInfo(const EndpointInfo&) = default;
586
+ EndpointInfo& operator=(const EndpointInfo&) = default;
587
+ #endif
588
+
584
589
  /**
585
590
  * Returns the type of the endpoint.
586
591
  * @return The endpoint type.
@@ -640,6 +645,12 @@ public:
640
645
 
641
646
  virtual ~Endpoint();
642
647
 
648
+ #ifdef ICE_CPP11_COMPILER
649
+ Endpoint() = default;
650
+ Endpoint(const Endpoint&) = default;
651
+ Endpoint& operator=(const Endpoint&) = default;
652
+ #endif
653
+
643
654
  /**
644
655
  * Return a string representation of the endpoint.
645
656
  * @return The string representation of the endpoint.
@@ -699,6 +710,11 @@ public:
699
710
  {
700
711
  }
701
712
 
713
+ #ifdef ICE_CPP11_COMPILER
714
+ IPEndpointInfo(const IPEndpointInfo&) = default;
715
+ IPEndpointInfo& operator=(const IPEndpointInfo&) = default;
716
+ #endif
717
+
702
718
  /**
703
719
  * The host or address configured with the endpoint.
704
720
  */
@@ -755,6 +771,11 @@ public:
755
771
  ::Ice::IPEndpointInfo(underlying, timeout, compress, host, port, sourceAddress)
756
772
  {
757
773
  }
774
+
775
+ #ifdef ICE_CPP11_COMPILER
776
+ TCPEndpointInfo(const TCPEndpointInfo&) = default;
777
+ TCPEndpointInfo& operator=(const TCPEndpointInfo&) = default;
778
+ #endif
758
779
  };
759
780
 
760
781
  /// \cond INTERNAL
@@ -804,6 +825,11 @@ public:
804
825
  {
805
826
  }
806
827
 
828
+ #ifdef ICE_CPP11_COMPILER
829
+ UDPEndpointInfo(const UDPEndpointInfo&) = default;
830
+ UDPEndpointInfo& operator=(const UDPEndpointInfo&) = default;
831
+ #endif
832
+
807
833
  /**
808
834
  * The multicast interface.
809
835
  */
@@ -855,6 +881,11 @@ public:
855
881
  {
856
882
  }
857
883
 
884
+ #ifdef ICE_CPP11_COMPILER
885
+ WSEndpointInfo(const WSEndpointInfo&) = default;
886
+ WSEndpointInfo& operator=(const WSEndpointInfo&) = default;
887
+ #endif
888
+
858
889
  /**
859
890
  * The URI configured with the endpoint.
860
891
  */
@@ -905,6 +936,11 @@ public:
905
936
  {
906
937
  }
907
938
 
939
+ #ifdef ICE_CPP11_COMPILER
940
+ OpaqueEndpointInfo(const OpaqueEndpointInfo&) = default;
941
+ OpaqueEndpointInfo& operator=(const OpaqueEndpointInfo&) = default;
942
+ #endif
943
+
908
944
  /**
909
945
  * The encoding version of the opaque endpoint (to decode or
910
946
  * encode the rawBytes).
@@ -2,7 +2,7 @@
2
2
  // Copyright (c) ZeroC, Inc. All rights reserved.
3
3
  //
4
4
  //
5
- // Ice version 3.7.3
5
+ // Ice version 3.7.7
6
6
  //
7
7
  // <auto-generated>
8
8
  //
@@ -35,7 +35,7 @@
35
35
  # if ICE_INT_VERSION % 100 >= 50
36
36
  # error Beta header file detected
37
37
  # endif
38
- # if ICE_INT_VERSION % 100 < 3
38
+ # if ICE_INT_VERSION % 100 < 7
39
39
  # error Ice patch level mismatch!
40
40
  # endif
41
41
  #endif
@@ -2,7 +2,7 @@
2
2
  // Copyright (c) ZeroC, Inc. All rights reserved.
3
3
  //
4
4
  //
5
- // Ice version 3.7.3
5
+ // Ice version 3.7.7
6
6
  //
7
7
  // <auto-generated>
8
8
  //
@@ -35,7 +35,7 @@
35
35
  # if ICE_INT_VERSION % 100 >= 50
36
36
  # error Beta header file detected
37
37
  # endif
38
- # if ICE_INT_VERSION % 100 < 3
38
+ # if ICE_INT_VERSION % 100 < 7
39
39
  # error Ice patch level mismatch!
40
40
  # endif
41
41
  #endif
@@ -2,7 +2,7 @@
2
2
  // Copyright (c) ZeroC, Inc. All rights reserved.
3
3
  //
4
4
  //
5
- // Ice version 3.7.3
5
+ // Ice version 3.7.7
6
6
  //
7
7
  // <auto-generated>
8
8
  //
@@ -35,7 +35,7 @@
35
35
  # if ICE_INT_VERSION % 100 >= 50
36
36
  # error Beta header file detected
37
37
  # endif
38
- # if ICE_INT_VERSION % 100 < 3
38
+ # if ICE_INT_VERSION % 100 < 7
39
39
  # error Ice patch level mismatch!
40
40
  # endif
41
41
  #endif
@@ -2,7 +2,7 @@
2
2
  // Copyright (c) ZeroC, Inc. All rights reserved.
3
3
  //
4
4
  //
5
- // Ice version 3.7.3
5
+ // Ice version 3.7.7
6
6
  //
7
7
  // <auto-generated>
8
8
  //
@@ -35,7 +35,7 @@
35
35
  # if ICE_INT_VERSION % 100 >= 50
36
36
  # error Beta header file detected
37
37
  # endif
38
- # if ICE_INT_VERSION % 100 < 3
38
+ # if ICE_INT_VERSION % 100 < 7
39
39
  # error Ice patch level mismatch!
40
40
  # endif
41
41
  #endif
@@ -2,7 +2,7 @@
2
2
  // Copyright (c) ZeroC, Inc. All rights reserved.
3
3
  //
4
4
  //
5
- // Ice version 3.7.3
5
+ // Ice version 3.7.7
6
6
  //
7
7
  // <auto-generated>
8
8
  //
@@ -38,7 +38,7 @@
38
38
  # if ICE_INT_VERSION % 100 >= 50
39
39
  # error Beta header file detected
40
40
  # endif
41
- # if ICE_INT_VERSION % 100 < 3
41
+ # if ICE_INT_VERSION % 100 < 7
42
42
  # error Ice patch level mismatch!
43
43
  # endif
44
44
  #endif
@@ -206,6 +206,12 @@ public:
206
206
 
207
207
  virtual ~ImplicitContext();
208
208
 
209
+ #ifdef ICE_CPP11_COMPILER
210
+ ImplicitContext() = default;
211
+ ImplicitContext(const ImplicitContext&) = default;
212
+ ImplicitContext& operator=(const ImplicitContext&) = default;
213
+ #endif
214
+
209
215
  /**
210
216
  * Get a copy of the underlying context.
211
217
  * @return A copy of the underlying context.
@@ -2,7 +2,7 @@
2
2
  // Copyright (c) ZeroC, Inc. All rights reserved.
3
3
  //
4
4
  //
5
- // Ice version 3.7.3
5
+ // Ice version 3.7.7
6
6
  //
7
7
  // <auto-generated>
8
8
  //
@@ -35,7 +35,7 @@
35
35
  # if ICE_INT_VERSION % 100 >= 50
36
36
  # error Beta header file detected
37
37
  # endif
38
- # if ICE_INT_VERSION % 100 < 3
38
+ # if ICE_INT_VERSION % 100 < 7
39
39
  # error Ice patch level mismatch!
40
40
  # endif
41
41
  #endif
@@ -2,7 +2,7 @@
2
2
  // Copyright (c) ZeroC, Inc. All rights reserved.
3
3
  //
4
4
  //
5
- // Ice version 3.7.3
5
+ // Ice version 3.7.7
6
6
  //
7
7
  // <auto-generated>
8
8
  //
@@ -38,7 +38,7 @@
38
38
  # if ICE_INT_VERSION % 100 >= 50
39
39
  # error Beta header file detected
40
40
  # endif
41
- # if ICE_INT_VERSION % 100 < 3
41
+ # if ICE_INT_VERSION % 100 < 7
42
42
  # error Ice patch level mismatch!
43
43
  # endif
44
44
  #endif
@@ -677,6 +677,12 @@ public:
677
677
 
678
678
  virtual ~Observer();
679
679
 
680
+ #ifdef ICE_CPP11_COMPILER
681
+ Observer() = default;
682
+ Observer(const Observer&) = default;
683
+ Observer& operator=(const Observer&) = default;
684
+ #endif
685
+
680
686
  /**
681
687
  * This method is called when the instrumented object is created
682
688
  * or when the observer is attached to an existing object.
@@ -722,6 +728,12 @@ public:
722
728
 
723
729
  virtual ~ThreadObserver();
724
730
 
731
+ #ifdef ICE_CPP11_COMPILER
732
+ ThreadObserver() = default;
733
+ ThreadObserver(const ThreadObserver&) = default;
734
+ ThreadObserver& operator=(const ThreadObserver&) = default;
735
+ #endif
736
+
725
737
  /**
726
738
  * Notification of thread state change.
727
739
  * @param oldState The previous thread state.
@@ -754,6 +766,12 @@ public:
754
766
 
755
767
  virtual ~ConnectionObserver();
756
768
 
769
+ #ifdef ICE_CPP11_COMPILER
770
+ ConnectionObserver() = default;
771
+ ConnectionObserver(const ConnectionObserver&) = default;
772
+ ConnectionObserver& operator=(const ConnectionObserver&) = default;
773
+ #endif
774
+
757
775
  /**
758
776
  * Notification of sent bytes over the connection.
759
777
  * @param num The number of bytes sent.
@@ -791,6 +809,12 @@ public:
791
809
 
792
810
  virtual ~DispatchObserver();
793
811
 
812
+ #ifdef ICE_CPP11_COMPILER
813
+ DispatchObserver() = default;
814
+ DispatchObserver(const DispatchObserver&) = default;
815
+ DispatchObserver& operator=(const DispatchObserver&) = default;
816
+ #endif
817
+
794
818
  /**
795
819
  * Notification of a user exception.
796
820
  */
@@ -828,6 +852,12 @@ public:
828
852
 
829
853
  virtual ~ChildInvocationObserver();
830
854
 
855
+ #ifdef ICE_CPP11_COMPILER
856
+ ChildInvocationObserver() = default;
857
+ ChildInvocationObserver(const ChildInvocationObserver&) = default;
858
+ ChildInvocationObserver& operator=(const ChildInvocationObserver&) = default;
859
+ #endif
860
+
831
861
  /**
832
862
  * Reply notification.
833
863
  * @param size The size of the reply.
@@ -859,6 +889,12 @@ public:
859
889
  typedef RemoteObserverPtr PointerType;
860
890
 
861
891
  virtual ~RemoteObserver();
892
+
893
+ #ifdef ICE_CPP11_COMPILER
894
+ RemoteObserver() = default;
895
+ RemoteObserver(const RemoteObserver&) = default;
896
+ RemoteObserver& operator=(const RemoteObserver&) = default;
897
+ #endif
862
898
  };
863
899
 
864
900
  /// \cond INTERNAL
@@ -885,6 +921,12 @@ public:
885
921
  typedef CollocatedObserverPtr PointerType;
886
922
 
887
923
  virtual ~CollocatedObserver();
924
+
925
+ #ifdef ICE_CPP11_COMPILER
926
+ CollocatedObserver() = default;
927
+ CollocatedObserver(const CollocatedObserver&) = default;
928
+ CollocatedObserver& operator=(const CollocatedObserver&) = default;
929
+ #endif
888
930
  };
889
931
 
890
932
  /// \cond INTERNAL
@@ -914,6 +956,12 @@ public:
914
956
 
915
957
  virtual ~InvocationObserver();
916
958
 
959
+ #ifdef ICE_CPP11_COMPILER
960
+ InvocationObserver() = default;
961
+ InvocationObserver(const InvocationObserver&) = default;
962
+ InvocationObserver& operator=(const InvocationObserver&) = default;
963
+ #endif
964
+
917
965
  /**
918
966
  * Notification of the invocation being retried.
919
967
  */
@@ -978,6 +1026,12 @@ public:
978
1026
 
979
1027
  virtual ~ObserverUpdater();
980
1028
 
1029
+ #ifdef ICE_CPP11_COMPILER
1030
+ ObserverUpdater() = default;
1031
+ ObserverUpdater(const ObserverUpdater&) = default;
1032
+ ObserverUpdater& operator=(const ObserverUpdater&) = default;
1033
+ #endif
1034
+
981
1035
  /**
982
1036
  * Update connection observers associated with each of the Ice
983
1037
  * connection from the communicator and its object adapters.
@@ -1030,6 +1084,12 @@ public:
1030
1084
 
1031
1085
  virtual ~CommunicatorObserver();
1032
1086
 
1087
+ #ifdef ICE_CPP11_COMPILER
1088
+ CommunicatorObserver() = default;
1089
+ CommunicatorObserver(const CommunicatorObserver&) = default;
1090
+ CommunicatorObserver& operator=(const CommunicatorObserver&) = default;
1091
+ #endif
1092
+
1033
1093
  /**
1034
1094
  * This method should return an observer for the given endpoint
1035
1095
  * information and connector. The Ice run-time calls this method
@@ -2,7 +2,7 @@
2
2
  // Copyright (c) ZeroC, Inc. All rights reserved.
3
3
  //
4
4
  //
5
- // Ice version 3.7.3
5
+ // Ice version 3.7.7
6
6
  //
7
7
  // <auto-generated>
8
8
  //
@@ -35,7 +35,7 @@
35
35
  # if ICE_INT_VERSION % 100 >= 50
36
36
  # error Beta header file detected
37
37
  # endif
38
- # if ICE_INT_VERSION % 100 < 3
38
+ # if ICE_INT_VERSION % 100 < 7
39
39
  # error Ice patch level mismatch!
40
40
  # endif
41
41
  #endif