xmp_toolkit_ruby 0.0.2

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 (183) hide show
  1. checksums.yaml +7 -0
  2. data/.idea/.gitignore +8 -0
  3. data/.rspec +3 -0
  4. data/.rubocop.yml +88 -0
  5. data/.ruby-gemset +1 -0
  6. data/.ruby-version +1 -0
  7. data/AGENTS.md +72 -0
  8. data/CHANGELOG.md +45 -0
  9. data/LICENSE.txt +21 -0
  10. data/README.md +287 -0
  11. data/Rakefile +25 -0
  12. data/cliff.toml +138 -0
  13. data/docker/Dockerfile +87 -0
  14. data/docker/ProductConfig.cmake.patch +11 -0
  15. data/docker/ToolchainGCC.cmake.patch +11 -0
  16. data/exe/xmp_toolkit_ruby +8 -0
  17. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/LICENSE +31 -0
  18. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/build/XMP_BuildInfo.h +17 -0
  19. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/TXMPFiles.hpp +853 -0
  20. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/TXMPIterator.hpp +234 -0
  21. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/TXMPMeta.hpp +1753 -0
  22. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/TXMPUtils.hpp +967 -0
  23. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMP.hpp +98 -0
  24. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMP.incl_cpp +69 -0
  25. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCommon/Interfaces/BaseInterfaces/IConfigurable.h +225 -0
  26. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCommon/Interfaces/BaseInterfaces/ISharedObject.h +71 -0
  27. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCommon/Interfaces/BaseInterfaces/IThreadSafe.h +76 -0
  28. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCommon/Interfaces/BaseInterfaces/IVersionable.h +71 -0
  29. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCommon/Interfaces/IConfigurationManager.h +167 -0
  30. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCommon/Interfaces/IError.h +377 -0
  31. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCommon/Interfaces/IErrorNotifier.h +52 -0
  32. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCommon/Interfaces/IMemoryAllocator.h +65 -0
  33. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCommon/Interfaces/IObjectFactory.h +90 -0
  34. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCommon/Interfaces/IUTF8String.h +504 -0
  35. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCommon/Utilities/TWrapperFunctions.h +252 -0
  36. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCommon/Utilities/TWrapperFunctions2.h +564 -0
  37. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCommon/XMPCommonDefines.h +194 -0
  38. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCommon/XMPCommonErrorCodes.h +114 -0
  39. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCommon/XMPCommonFwdDeclarations.h +158 -0
  40. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCommon/XMPCommonLatestInterfaceVersions.h +51 -0
  41. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCommon/source/IConfigurable.cpp +204 -0
  42. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCommon/source/IConfigurationManager.cpp +92 -0
  43. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCommon/source/IError.cpp +207 -0
  44. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCommon/source/IErrorNotifier.cpp +26 -0
  45. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCommon/source/IUTF8String.cpp +299 -0
  46. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/Interfaces/IArrayNode.h +303 -0
  47. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/Interfaces/IClientDOMParser.h +88 -0
  48. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/Interfaces/IClientDOMSerializer.h +94 -0
  49. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/Interfaces/ICompositeNode.h +331 -0
  50. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/Interfaces/ICoreConfigurationManager.h +107 -0
  51. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/Interfaces/ICoreObjectFactory.h +279 -0
  52. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/Interfaces/IDOMImplementationRegistry.h +150 -0
  53. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/Interfaces/IDOMParser.h +181 -0
  54. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/Interfaces/IDOMSerializer.h +120 -0
  55. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/Interfaces/IMetadata.h +145 -0
  56. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/Interfaces/IMetadataConverterUtils.h +116 -0
  57. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/Interfaces/INameSpacePrefixMap.h +236 -0
  58. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/Interfaces/INode.h +582 -0
  59. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/Interfaces/INodeIterator.h +193 -0
  60. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/Interfaces/IPath.h +212 -0
  61. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/Interfaces/IPathSegment.h +225 -0
  62. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/Interfaces/ISimpleNode.h +150 -0
  63. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/Interfaces/IStructureNode.h +306 -0
  64. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/XMPCoreDefines.h +94 -0
  65. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/XMPCoreErrorCodes.h +116 -0
  66. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/XMPCoreFwdDeclarations.h +325 -0
  67. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/XMPCoreLatestInterfaceVersions.h +97 -0
  68. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/source/IArrayNode.cpp +163 -0
  69. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/source/IClientDOMParser.cpp +76 -0
  70. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/source/IClientDOMSerializer.cpp +73 -0
  71. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/source/ICompositeNode.cpp +121 -0
  72. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/source/ICoreConfigurationManager.cpp +88 -0
  73. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/source/ICoreObjectFactory.cpp +83 -0
  74. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/source/IDOMImplementationRegistry.cpp +122 -0
  75. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/source/IDOMParser.cpp +116 -0
  76. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/source/IDOMSerializer.cpp +109 -0
  77. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/source/IMetadata.cpp +113 -0
  78. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/source/IMetadataConverterUtils.cpp +92 -0
  79. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/source/INameSpacePrefixMap.cpp +187 -0
  80. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/source/INode.cpp +377 -0
  81. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/source/INodeIterator.cpp +105 -0
  82. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/source/IPath.cpp +157 -0
  83. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/source/IPathSegment.cpp +146 -0
  84. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/source/ISimpleNode.cpp +111 -0
  85. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMPCore/source/IStructureNode.cpp +104 -0
  86. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMP_Const.h +1590 -0
  87. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMP_Environment.h +223 -0
  88. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMP_IO.hpp +169 -0
  89. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/XMP_Version.h +52 -0
  90. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/client-glue/TXMPFiles.incl_cpp +484 -0
  91. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/client-glue/TXMPIterator.incl_cpp +223 -0
  92. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/client-glue/TXMPMeta.incl_cpp +917 -0
  93. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/client-glue/TXMPUtils.incl_cpp +445 -0
  94. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/client-glue/WXMPFiles.hpp +281 -0
  95. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/client-glue/WXMPIterator.hpp +74 -0
  96. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/client-glue/WXMPMeta.hpp +635 -0
  97. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/client-glue/WXMPUtils.hpp +314 -0
  98. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/include/client-glue/WXMP_Common.hpp +132 -0
  99. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/libraries/i80386linux_x64/debug/libXMPCore.so +0 -0
  100. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/libraries/i80386linux_x64/debug/libXMPCoreStatic.a +0 -0
  101. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/libraries/i80386linux_x64/debug/libXMPFiles.so +0 -0
  102. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/libraries/i80386linux_x64/debug/libXMPFilesStatic.a +0 -0
  103. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/libraries/macintosh/universal/Debug/libXMPCoreStatic.a +0 -0
  104. data/ext/xmp_toolkit_ruby/XMP-Toolkit-SDK/public/libraries/macintosh/universal/Debug/libXMPFilesStatic.a +0 -0
  105. data/ext/xmp_toolkit_ruby/extconf.rb +101 -0
  106. data/ext/xmp_toolkit_ruby/xmp_toolkit.cpp +321 -0
  107. data/ext/xmp_toolkit_ruby/xmp_toolkit.hpp +69 -0
  108. data/ext/xmp_toolkit_ruby/xmp_toolkit_ruby.cpp +44 -0
  109. data/lib/xmp_toolkit_ruby/cli.rb +95 -0
  110. data/lib/xmp_toolkit_ruby/namespaces.rb +77 -0
  111. data/lib/xmp_toolkit_ruby/plugins/LICENSE +31 -0
  112. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/i80386linux/i80386linux/PDF_Handler.resources/MODULE_IDENTIFIER.txt +1 -0
  113. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/i80386linux/i80386linux/PDF_Handler.resources/XMPPLUGINUIDS.txt +31 -0
  114. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/i80386linux/i80386linux/PDF_Handler.xpi +0 -0
  115. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/i80386linux/i80386linux/libMiniPDFL.so +0 -0
  116. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/i80386linux/i80386linux_x64/PDF_Handler.resources/MODULE_IDENTIFIER.txt +1 -0
  117. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/i80386linux/i80386linux_x64/PDF_Handler.resources/XMPPLUGINUIDS.txt +31 -0
  118. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/i80386linux/i80386linux_x64/PDF_Handler.xpi +0 -0
  119. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/i80386linux/i80386linux_x64/libMiniPDFL.so +0 -0
  120. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/PDF_Handler +0 -0
  121. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Resources/Info.plist +52 -0
  122. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Resources/MODULE_IDENTIFIER.txt +1 -0
  123. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Resources/MiniPDFL.framework/MiniPDFL +0 -0
  124. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Resources/MiniPDFL.framework/Resources/English.lproj/InfoPlist.strings +0 -0
  125. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Resources/MiniPDFL.framework/Resources/Info.plist +35 -0
  126. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Resources/MiniPDFL.framework/Versions/A/MiniPDFL +0 -0
  127. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Resources/MiniPDFL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +0 -0
  128. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Resources/MiniPDFL.framework/Versions/A/Resources/Info.plist +35 -0
  129. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Resources/MiniPDFL.framework/Versions/A/_CodeSignature/CodeResources +146 -0
  130. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Resources/MiniPDFL.framework/Versions/Current/MiniPDFL +0 -0
  131. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Resources/MiniPDFL.framework/Versions/Current/Resources/English.lproj/InfoPlist.strings +0 -0
  132. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Resources/MiniPDFL.framework/Versions/Current/Resources/Info.plist +35 -0
  133. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Resources/MiniPDFL.framework/Versions/Current/_CodeSignature/CodeResources +146 -0
  134. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Resources/XMPPLUGINUIDS.txt +31 -0
  135. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/A/PDF_Handler +0 -0
  136. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/A/Resources/Info.plist +52 -0
  137. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/A/Resources/MODULE_IDENTIFIER.txt +1 -0
  138. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/A/Resources/MiniPDFL.framework/MiniPDFL +0 -0
  139. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/A/Resources/MiniPDFL.framework/Resources/English.lproj/InfoPlist.strings +0 -0
  140. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/A/Resources/MiniPDFL.framework/Resources/Info.plist +35 -0
  141. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/A/Resources/MiniPDFL.framework/Versions/A/MiniPDFL +0 -0
  142. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/A/Resources/MiniPDFL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +0 -0
  143. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/A/Resources/MiniPDFL.framework/Versions/A/Resources/Info.plist +35 -0
  144. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/A/Resources/MiniPDFL.framework/Versions/A/_CodeSignature/CodeResources +146 -0
  145. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/A/Resources/MiniPDFL.framework/Versions/Current/MiniPDFL +0 -0
  146. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/A/Resources/MiniPDFL.framework/Versions/Current/Resources/English.lproj/InfoPlist.strings +0 -0
  147. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/A/Resources/MiniPDFL.framework/Versions/Current/Resources/Info.plist +35 -0
  148. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/A/Resources/MiniPDFL.framework/Versions/Current/_CodeSignature/CodeResources +146 -0
  149. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/A/Resources/XMPPLUGINUIDS.txt +31 -0
  150. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/A/_CodeSignature/CodeResources +216 -0
  151. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/Current/PDF_Handler +0 -0
  152. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/Current/Resources/Info.plist +52 -0
  153. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/Current/Resources/MODULE_IDENTIFIER.txt +1 -0
  154. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/Current/Resources/MiniPDFL.framework/MiniPDFL +0 -0
  155. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/Current/Resources/MiniPDFL.framework/Resources/English.lproj/InfoPlist.strings +0 -0
  156. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/Current/Resources/MiniPDFL.framework/Resources/Info.plist +35 -0
  157. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/Current/Resources/MiniPDFL.framework/Versions/A/MiniPDFL +0 -0
  158. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/Current/Resources/MiniPDFL.framework/Versions/A/Resources/English.lproj/InfoPlist.strings +0 -0
  159. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/Current/Resources/MiniPDFL.framework/Versions/A/Resources/Info.plist +35 -0
  160. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/Current/Resources/MiniPDFL.framework/Versions/A/_CodeSignature/CodeResources +146 -0
  161. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/Current/Resources/MiniPDFL.framework/Versions/Current/MiniPDFL +0 -0
  162. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/Current/Resources/MiniPDFL.framework/Versions/Current/Resources/English.lproj/InfoPlist.strings +0 -0
  163. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/Current/Resources/MiniPDFL.framework/Versions/Current/Resources/Info.plist +35 -0
  164. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/Current/Resources/MiniPDFL.framework/Versions/Current/_CodeSignature/CodeResources +146 -0
  165. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/Current/Resources/XMPPLUGINUIDS.txt +31 -0
  166. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/macintosh/universal/PDF_Handler.xpi/Versions/Current/_CodeSignature/CodeResources +216 -0
  167. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/resource/linux/PDF_Handler.exp +11 -0
  168. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/resource/mac/PDF_Handler.exp +2 -0
  169. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/resource/mac/PDF_Handler.plist +28 -0
  170. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/resource/mac/PDF_HandlerPList.h +12 -0
  171. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/resource/win/CopyPDFL.bat +14 -0
  172. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/resource/win/PDF_Handler-32.rc +8 -0
  173. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/resource/win/PDF_Handler-64.rc +8 -0
  174. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/resource/win/PDF_Handler.def +9 -0
  175. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/windows/windows_x64/MiniPDFL.dll +0 -0
  176. data/lib/xmp_toolkit_ruby/plugins/PDF_Handler/windows/windows_x64/PDF_Handler.xpi +0 -0
  177. data/lib/xmp_toolkit_ruby/version.rb +5 -0
  178. data/lib/xmp_toolkit_ruby/xmp_file_format.rb +87 -0
  179. data/lib/xmp_toolkit_ruby/xmp_file_handler_flags.rb +49 -0
  180. data/lib/xmp_toolkit_ruby.rb +237 -0
  181. data/sig/xmp_toolkit_ruby.rbs +4 -0
  182. data/tasks/changelog.rake +29 -0
  183. metadata +357 -0
@@ -0,0 +1,223 @@
1
+ #ifndef __XMP_Environment_h__
2
+ #define __XMP_Environment_h__ 1
3
+
4
+ // =================================================================================================
5
+ // XMP_Environment.h - Build environment flags for the XMP toolkit.
6
+ // ================================================================
7
+ //
8
+ // This header is just C preprocessor macro definitions to set up the XMP toolkit build environment.
9
+ // It must be the first #include in any chain since it might affect things in other #includes.
10
+ //
11
+ // =================================================================================================
12
+
13
+ // =================================================================================================
14
+ // Copyright 2002 Adobe
15
+ // All Rights Reserved.
16
+ //
17
+ // NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the terms
18
+ // of the Adobe license agreement accompanying it.
19
+ // =================================================================================================
20
+
21
+ // =================================================================================================
22
+ // Determine the Platform
23
+ // ======================
24
+
25
+ // One of MAC_ENV, WIN_ENV, UNIX_ENV or IOS_ENV must be defined by the client. Since some other code
26
+ // requires these to be defined without values, they are only used here to define XMP-specific
27
+ // macros with 0 or 1 values.
28
+
29
+ // ! Tempting though it might be to have a standard macro for big or little endian, there seems to
30
+ // ! be no decent way to do that on our own in UNIX. Forcing it on the client isn't acceptable.
31
+
32
+ #if defined ( MAC_ENV ) && !defined (IOS_ENV)
33
+
34
+ #if 0 // ! maybe someday - ! MAC_ENV
35
+ #error "MAC_ENV must be defined so that \"#if MAC_ENV\" is true"
36
+ #endif
37
+
38
+ #if defined ( WIN_ENV ) || defined ( UNIX_ENV ) || defined ( ANDROID_ENV )
39
+ #error "XMP environment error - must define only one of MAC_ENV, WIN_ENV, UNIX_ENV or ANDROID_ENV"
40
+ #endif
41
+
42
+ #define XMP_MacBuild 1
43
+ #define XMP_WinBuild 0
44
+ #define XMP_UNIXBuild 0
45
+ #define XMP_iOSBuild 0
46
+ #define XMP_UWP 0
47
+ #define XMP_AndroidBuild 0
48
+
49
+ #elif defined ( WIN_ENV )
50
+
51
+ #if 0 // ! maybe someday - ! WIN_ENV
52
+ #error "WIN_ENV must be defined so that \"#if WIN_ENV\" is true"
53
+ #endif
54
+
55
+ #if defined ( MAC_ENV ) || defined ( UNIX_ENV ) || defined ( IOS_ENV ) || defined ( ANDROID_ENV )
56
+ #error "XMP environment error - must define only one of MAC_ENV (or IOS_ENV), WIN_ENV, UNIX_ENV, ANDROID_ENV"
57
+ #endif
58
+
59
+ #define XMP_MacBuild 0
60
+ #define XMP_WinBuild 1
61
+ #define XMP_UNIXBuild 0
62
+ #define XMP_iOSBuild 0
63
+ #if defined ( WIN_UNIVERSAL_ENV)
64
+ #define XMP_UWP 1
65
+ #else
66
+ #define XMP_UWP 0
67
+ #endif
68
+ #define XMP_AndroidBuild 0
69
+
70
+ #elif defined ( UNIX_ENV ) && !defined (ANDROID_ENV)
71
+
72
+ #if 0 // ! maybe someday - ! UNIX_ENV
73
+ #error "UNIX_ENV must be defined so that \"#if UNIX_ENV\" is true"
74
+ #endif
75
+
76
+ #if defined ( MAC_ENV ) || defined ( WIN_ENV ) || defined ( IOS_ENV ) || defined ( ANDROID_ENV )
77
+ #error "XMP environment error - must define only one of MAC_ENV (or IOS_ENV), WIN_ENV, UNIX_ENV, ANDROID_ENV"
78
+ #endif
79
+
80
+ #define XMP_MacBuild 0
81
+ #define XMP_WinBuild 0
82
+ #define XMP_UNIXBuild 1
83
+ #define XMP_iOSBuild 0
84
+
85
+ #define XMP_UWP 0
86
+ #define XMP_AndroidBuild 0
87
+
88
+ #elif defined ( IOS_ENV )
89
+
90
+ #if 0 // ! maybe someday - ! IOS_ENV
91
+ #error "IOS_ENV must be defined so that \"#if IOS_ENV\" is true"
92
+ #endif
93
+
94
+ #if defined ( WIN_ENV ) || defined ( UNIX_ENV ) || defined ( ANDROID_ENV )
95
+ #error "XMP environment error - must define only one of IOS_ENV, WIN_ENV, UNIX_ENV, ANDROID_ENV"
96
+ #endif
97
+
98
+ #define XMP_MacBuild 0
99
+ #define XMP_WinBuild 0
100
+ #define XMP_UNIXBuild 0
101
+ #define XMP_iOSBuild 1
102
+
103
+ #define XMP_UWP 0
104
+
105
+ #define XMP_AndroidBuild 0
106
+
107
+ #elif defined ( ANDROID_ENV )
108
+
109
+ #if 0 // ! maybe someday - ! UNIX_ENV
110
+ #error "ANDROID_ENV must be defined so that \"#if ANDROID_ENV\" is true"
111
+ #endif
112
+
113
+ #if defined ( MAC_ENV ) || defined ( WIN_ENV ) || defined ( IOS_ENV )
114
+ #error "XMP environment error - must define only one of MAC_ENV (or IOS_ENV), WIN_ENV, UNIX_ENV, ANDROID_ENV"
115
+ #endif
116
+
117
+ #define XMP_MacBuild 0
118
+ #define XMP_WinBuild 0
119
+ #define XMP_UNIXBuild 0
120
+ #define XMP_iOSBuild 0
121
+ #define XMP_AndroidBuild 1
122
+
123
+ #else
124
+
125
+ #error "XMP environment error - must define one of MAC_ENV, WIN_ENV, UNIX_ENV , ANDROID_ENV or IOS_ENV"
126
+
127
+ #endif
128
+
129
+ // =================================================================================================
130
+ // Common Macros
131
+ // =============
132
+
133
+ #if defined ( DEBUG )
134
+ #if defined ( NDEBUG )
135
+ #error "XMP environment error - both DEBUG and NDEBUG are defined"
136
+ #endif
137
+ #define XMP_DebugBuild 1
138
+ #endif
139
+
140
+ #if defined ( NDEBUG )
141
+ #define XMP_DebugBuild 0
142
+ #endif
143
+
144
+ #ifndef XMP_DebugBuild
145
+ #define XMP_DebugBuild 0
146
+ #endif
147
+
148
+ #if XMP_DebugBuild
149
+ #include <stdio.h> // The assert macro needs printf.
150
+ #endif
151
+
152
+ #ifndef DISABLE_SERIALIZED_IMPORT_EXPORT
153
+ #define DISABLE_SERIALIZED_IMPORT_EXPORT 0
154
+ #endif
155
+
156
+ #ifndef XMP_64
157
+ #if _WIN64 || defined(_LP64)
158
+ #define XMP_64 1
159
+ #else
160
+ #define XMP_64 0
161
+ #endif
162
+ #endif
163
+
164
+ // =================================================================================================
165
+ // Macintosh Specific Settings
166
+ // ===========================
167
+ #if (XMP_MacBuild)
168
+ #define XMP_HELPER_DLL_IMPORT __attribute__((visibility("default")))
169
+ #define XMP_HELPER_DLL_EXPORT __attribute__((visibility("default")))
170
+ #define XMP_HELPER_DLL_PRIVATE __attribute__((visibility("hidden")))
171
+ #define APICALL
172
+ #endif
173
+
174
+ // =================================================================================================
175
+ // Windows Specific Settings
176
+ // =========================
177
+ #if (XMP_WinBuild)
178
+ #define XMP_HELPER_DLL_IMPORT
179
+ #define XMP_HELPER_DLL_EXPORT
180
+ #define XMP_HELPER_DLL_PRIVATE
181
+ #define APICALL __stdcall
182
+ #endif
183
+
184
+ // =================================================================================================
185
+ // UNIX Specific Settings
186
+ // ======================
187
+ #if (XMP_UNIXBuild) | (XMP_AndroidBuild)
188
+ #define XMP_HELPER_DLL_IMPORT
189
+ #define XMP_HELPER_DLL_EXPORT __attribute__ ((visibility ("default")))
190
+ #define XMP_HELPER_DLL_PRIVATE __attribute__ ((visibility ("hidden")))
191
+ #define APICALL
192
+ #endif
193
+
194
+ // =================================================================================================
195
+ // IOS Specific Settings
196
+ // ===========================
197
+ #if (XMP_iOSBuild)
198
+ #include <TargetConditionals.h>
199
+ #if (TARGET_CPU_ARM)
200
+ #define XMP_IOS_ARM 1
201
+ #else
202
+ #define XMP_IOS_ARM 0
203
+ #endif
204
+ #define XMP_HELPER_DLL_IMPORT __attribute__((visibility("default")))
205
+ #define XMP_HELPER_DLL_EXPORT __attribute__((visibility("default")))
206
+ #define XMP_HELPER_DLL_PRIVATE __attribute__((visibility("hidden")))
207
+ #define APICALL
208
+ #endif
209
+
210
+ // =================================================================================================
211
+
212
+ #if (XMP_DynamicBuild)
213
+ #define XMP_PUBLIC XMP_HELPER_DLL_EXPORT
214
+ #define XMP_PRIVATE XMP_HELPER_DLL_PRIVATE
215
+ #elif (XMP_StaticBuild)
216
+ #define XMP_PUBLIC
217
+ #define XMP_PRIVATE
218
+ #else
219
+ #define XMP_PUBLIC XMP_HELPER_DLL_IMPORT
220
+ #define XMP_PRIVATE XMP_HELPER_DLL_PRIVATE
221
+ #endif
222
+
223
+ #endif // __XMP_Environment_h__
@@ -0,0 +1,169 @@
1
+ #ifndef __XMP_IO_hpp__
2
+ #define __XMP_IO_hpp__ 1
3
+
4
+ // =================================================================================================
5
+ // Copyright Adobe
6
+ // Copyright 2010 Adobe
7
+ // All Rights Reserved
8
+ //
9
+ // NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the terms
10
+ // of the Adobe license agreement accompanying it.
11
+ // =================================================================================================
12
+
13
+ #include "XMP_Environment.h" // ! XMP_Environment.h must be the first included header.
14
+
15
+ #include "XMP_Const.h"
16
+
17
+ // =================================================================================================
18
+ /// \class XMP_IO XMP_IO.hpp
19
+ /// \brief Abstract base class for client-managed I/O with \c TXMPFiles.
20
+ ///
21
+ /// \c XMP_IO is an abstract base class for client-managed I/O with \c TXMPFiles. This allows a
22
+ /// client to use the embedded metadata processing logic of \c TXMPFiles in cases where a string
23
+ /// file path cannot be provided, or where it is impractical to allow \c TXMPFiles to separately
24
+ /// open the file and do its own I/O. Although described in terms of files, any form of storage may
25
+ /// be used as long as the functions operate as defined.
26
+ ///
27
+ /// This is not a general purpose I/O class. It contains only the necessary functions needed by the
28
+ /// internals of \c TXMPFiles. It is intended to be used as an adaptor for an existing I/O mechanism
29
+ /// that the client wants \c TXMPFiles to use.
30
+ ///
31
+ /// To use \c XMP_IO, a client creates a derived class then uses the form of \c TCMPFiles::OpenFile
32
+ /// that takes an \c XMP_IO parameter instead of a string file path. The derived \c XMP_IO object
33
+ /// must be ready for use when \c TCMPFiles::OpenFile is called.
34
+ ///
35
+ /// There are no Open or Close functions in \c XMP_IO, they are specific to each implementation. The
36
+ /// derived \c XMP_IO object must be open and ready for use before being passed to \c
37
+ /// TXMP_Files::OpenFile, and remain open and ready for use until \c TXMP_Files::CloseFile returns,
38
+ /// or some other fatal error occurs. The client has final responsibility for closing and
39
+ /// terminating the derived \c XMP_IO object.
40
+ // =================================================================================================
41
+
42
+ class XMP_IO {
43
+ public:
44
+ enum { kReadAll = true };
45
+ // ---------------------------------------------------------------------------------------------
46
+ /// @brief Read into a buffer, returning the number of bytes read.
47
+ ///
48
+ /// Read into a buffer, returning the number of bytes read. Returns the actual number of bytes
49
+ /// read. Throws an exception if requireSuccess is true and not enough data is available.
50
+ /// Throwing \c XMPError is recommended. The buffer content and I/O position after a throw are
51
+ /// undefined.
52
+ ///
53
+ /// @param buffer A pointer to the buffer.
54
+ /// @param count The length of the buffer in bytes.
55
+ /// @param readAll True if reading less than the requested amount is a failure.
56
+ ///
57
+ /// @return Returns the number of bytes read.
58
+
59
+ virtual XMP_Uns32 Read ( void* buffer, XMP_Uns32 count, bool readAll = false ) = 0;
60
+
61
+ inline XMP_Uns32 ReadAll ( void* buffer, XMP_Uns32 bytes )
62
+ { return this->Read ( buffer, bytes, kReadAll ); };
63
+
64
+ // ---------------------------------------------------------------------------------------------
65
+ /// @brief Write from a buffer.
66
+ ///
67
+ /// Write from a buffer, overwriting existing data and extending the file as necesary. All data
68
+ /// must be written or an exception thrown. Throwing \c XMPError is recommended.
69
+ ///
70
+ /// @param buffer A pointer to the buffer.
71
+ /// @param count The length of the buffer in bytes.
72
+
73
+ virtual void Write ( const void* buffer, XMP_Uns32 count ) = 0;
74
+
75
+ // ---------------------------------------------------------------------------------------------
76
+ /// @brief Set the I/O position, returning the new absolute offset in bytes.
77
+ ///
78
+ /// Set the I/O position, returning the new absolute offset in bytes. The offset parameter may
79
+ /// be positive or negative. A seek beyond EOF is allowed when writing and extends the file, it
80
+ /// is equivalent to seeking to EOF then writing the needed amount of undefined data. A
81
+ /// read-only seek beyond EOF throws an exception. Throwing \c XMPError is recommended.
82
+ ///
83
+ /// @param offset The offset relative to the mode.
84
+ /// @param mode The mode, or origin, of the seek.
85
+ ///
86
+ /// @return The new absolute offset in bytes.
87
+
88
+ virtual XMP_Int64 Seek ( XMP_Int64 offset, SeekMode mode ) = 0;
89
+
90
+ inline XMP_Int64 Offset() { return this->Seek ( 0, kXMP_SeekFromCurrent ); };
91
+ inline XMP_Int64 Rewind() { return this->Seek ( 0, kXMP_SeekFromStart ); }; // Always returns 0.
92
+ inline XMP_Int64 ToEOF() { return this->Seek ( 0, kXMP_SeekFromEnd ); };
93
+
94
+ // ---------------------------------------------------------------------------------------------
95
+ /// @brief Return the length of the file in bytes.
96
+ ///
97
+ /// Return the length of the file in bytes. The I/O position is unchanged.
98
+ ///
99
+ /// @return The length of the file in bytes.
100
+
101
+ virtual XMP_Int64 Length() = 0;
102
+
103
+ // ---------------------------------------------------------------------------------------------
104
+ /// @brief Truncate the file to the given length.
105
+ ///
106
+ /// Truncate the file to the given length. The I/O position after truncation is unchanged if
107
+ /// still valid, otherwise it is set to the new EOF. Throws an exception if the new length is
108
+ /// longer than the file's current length. Throwing \c XMPError is recommended.
109
+ ///
110
+ /// @param length The new length for the file, must be less than or equal to the current length.
111
+
112
+ virtual void Truncate ( XMP_Int64 length ) = 0;
113
+
114
+ // ---------------------------------------------------------------------------------------------
115
+ /// @brief Create an associated temp file for use in a safe-save style operation.
116
+ ///
117
+ /// Create an associated temp file, for example in the same directory and with a related name.
118
+ /// Returns an already existing temp with no other action. The temp must be opened for
119
+ /// read-write access. It will be used in a safe-save style operation, using some of the
120
+ /// original file plus new portions to write the temp, then replacing the original from the temp
121
+ /// when done. Throws an exception if the owning object is opened for read-only access, or if
122
+ /// the temp file cannot be created. Throwing \c XMPError is recommended.
123
+ ///
124
+ /// The temp file is normally closed and deleted, and the temporary \c XMP_IO object deleted, by
125
+ /// a call to \c AbsorbTemp or \c DeleteTemp. It must be closed and deleted by the derived \c
126
+ /// XMP_IO object's destructor if necessary.
127
+ ///
128
+ /// \c DeriveTemp may be called on a temporary \c XMP_IO object.
129
+ ///
130
+ /// @return A pointer to the associated temporary \c XMP_IO object.
131
+
132
+ virtual XMP_IO* DeriveTemp() = 0;
133
+
134
+ // ---------------------------------------------------------------------------------------------
135
+ /// @brief Replace the owning file's content with that of the temp.
136
+ ///
137
+ /// Used at the end of a safe-save style operation to replace the original content with that
138
+ /// from the associated temp file. The temp file must be closed and deleted after the content
139
+ /// swap. The temporary \c XMP_IO object is deleted. Throws an exception if the temp file cannot
140
+ /// be absorbed. Throwing \c XMPError is recommended.
141
+
142
+ virtual void AbsorbTemp() = 0;
143
+
144
+ // ---------------------------------------------------------------------------------------------
145
+ /// @brief Delete a temp file, leaving the original alone.
146
+ ///
147
+ /// Used for a failed safe-save style operation. The temp file is closed and deleted without
148
+ /// being absorbed, and the temporary \c XMP_IO object is deleted. Does nothing if no temp
149
+ /// exists.
150
+
151
+ virtual void DeleteTemp() = 0;
152
+
153
+ // ---------------------------------------------------------------------------------------------
154
+
155
+ XMP_IO() {};
156
+ virtual ~XMP_IO() {};
157
+
158
+ private:
159
+
160
+ // ---------------------------------------------------------------------------------------------
161
+ /// Copy construction and assignment are not public. That would require the implementation to
162
+ /// share state across multiple XMP_IO objects.
163
+
164
+ XMP_IO ( const XMP_IO & original );
165
+ void operator= ( const XMP_IO& ) { /**this = in; *//* Avoid Win compile warnings. */ };
166
+
167
+ };
168
+
169
+ #endif // __XMP_IO_hpp__
@@ -0,0 +1,52 @@
1
+ #ifndef __XMP_Version_h__
2
+ #define __XMP_Version_h__ 1
3
+
4
+ /* --------------------------------------------------------------------------------------------- */
5
+ /* ** IMPORTANT ** This file must be usable by strict ANSI C compilers. No "//" comments, etc. */
6
+ /* --------------------------------------------------------------------------------------------- */
7
+
8
+ /*
9
+ // =================================================================================================
10
+ // Copyright 2002 Adobe
11
+ // All Rights Reserved.
12
+ //
13
+ // NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the terms
14
+ // of the Adobe license agreement accompanying it.
15
+ // =================================================================================================
16
+ */
17
+
18
+ /* ============================================================================================= */
19
+ /**
20
+ XMP Toolkit Version Information
21
+
22
+ Version information for the XMP toolkit is stored in the executable and available through a runtime
23
+ call, <tt>SXMPMeta::GetVersionInfo</tt>. In addition a static version number is defined in this
24
+ header. The information in the executable or returned by <tt>SXMPMeta::GetVersionInfo</tt> is about
25
+ the implementation internals, it is runtime version information. The values defined in this header
26
+ describe the version of the API used at client compile time. They do not necessarily relate to the
27
+ runtime version.
28
+
29
+ Important: Do not display the static values defined here to users as the version of XMP in use. Do
30
+ not base runtime decisions on just this static version. It is OK to compare the static and runtime
31
+ versions.
32
+
33
+ */
34
+ /* ============================================================================================= */
35
+
36
+ #define XMPCORE_API_VERSION_MAJOR 6
37
+ #define XMPCORE_API_VERSION_MINOR 0
38
+ #define XMPCORE_API_VERSION_MICRO 0
39
+
40
+ #define XMPCORE_API_VERSION 6.0.0
41
+ #define XMPCORE_API_VERSION_STRING "6.0.0"
42
+
43
+ #define XMPFILES_API_VERSION_MAJOR 6
44
+ #define XMPFILES_API_VERSION_MINOR 0
45
+ #define XMPFILES_API_VERSION_MICRO 0
46
+
47
+ #define XMPFILES_API_VERSION 6.0.0
48
+ #define XMPFILES_API_VERSION_STRING "6.0.0"
49
+
50
+ /* ============================================================================================= */
51
+
52
+ #endif /* __XMP_Version_h__ */