diff options
Diffstat (limited to 'src/exiv2wrapper.hpp')
-rw-r--r-- | src/exiv2wrapper.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/exiv2wrapper.hpp b/src/exiv2wrapper.hpp index 8a0d885..91a4c77 100644 --- a/src/exiv2wrapper.hpp +++ b/src/exiv2wrapper.hpp @@ -190,7 +190,9 @@ public: // Throw an exception if the tag is not set. const XmpTag getXmpTag(std::string key); - void setXmpTagValue(std::string key, std::string value); + void setXmpTagTextValue(const std::string& key, const std::string& value); + void setXmpTagArrayValue(const std::string& key, const boost::python::list& values); + void setXmpTagLangAltValue(const std::string& key, const boost::python::dict& values); // Delete the required XMP tag. // Throw an exception if the tag was not set. |