lib3mf 2.5 :

- aggiornamento versione
- utilizzate le nostre librerie esterne libzip e zlib e non quelle incluse in lib3mf.
This commit is contained in:
SaraP
2026-08-25 12:44:11 +02:00
parent ea6efc1e36
commit 513f08e691
544 changed files with 52634 additions and 30760 deletions
+1 -4
View File
@@ -57,7 +57,6 @@ sLib3MFTransform Lib3MF::MatrixToTransform(const NMR::NMATRIX3 matrix)
return transform;
}
eLib3MFEncryptionAlgorithm Lib3MF::translateEncryptionAlgorithm(const NMR::eKeyStoreEncryptAlgorithm algorithm) {
if (NMR::eKeyStoreEncryptAlgorithm::AES256_GCM == algorithm)
return eLib3MFEncryptionAlgorithm::AES256_GCM;
@@ -80,8 +79,6 @@ NMR::eKeyStoreWrapAlgorithm Lib3MF::translateWrappingAlgorithm(const eLib3MFWrap
throw ELib3MFInterfaceException(LIB3MF_ERROR_NOTIMPLEMENTED);
}
eLib3MFCompression Lib3MF::translateCompression(bool compression) {
if (compression)
return eLib3MFCompression::Deflate;
@@ -90,4 +87,4 @@ eLib3MFCompression Lib3MF::translateCompression(bool compression) {
bool Lib3MF::translateCompression(const eLib3MFCompression compression) {
return eLib3MFCompression::Deflate == compression;
}
}