diff options
author | Olivier Tilloy <olivier@tilloy.net> | 2009-01-12 20:34:21 +0100 |
---|---|---|
committer | Olivier Tilloy <olivier@tilloy.net> | 2009-01-12 20:34:21 +0100 |
commit | cd660c12a72782ff6e9d919bda51db5de0e440ed (patch) | |
tree | a856f19a2102d7905c3c6921abf6d96b81ca087a /src/exiv2wrapper.hpp | |
parent | 3528a5f69b6f16c00673e2e0c9966a6d88fb0163 (diff) | |
download | pyexiv2-cd660c12a72782ff6e9d919bda51db5de0e440ed.tar.gz |
Retrieve XMP tag values (without python type conversion atm).
Diffstat (limited to 'src/exiv2wrapper.hpp')
-rw-r--r-- | src/exiv2wrapper.hpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/exiv2wrapper.hpp b/src/exiv2wrapper.hpp index 9d86f1b..f26f9be 100644 --- a/src/exiv2wrapper.hpp +++ b/src/exiv2wrapper.hpp @@ -101,7 +101,6 @@ public: // tagdesc // type // tagvalue (list) - // tagvalue (human-readable) (list) boost::python::tuple getIptcTag(std::string key); // Set the IPTC tag's value and return a tuple containing the @@ -124,6 +123,14 @@ public: boost::python::list xmpKeys(); + // key + // tagname + // taglabel + // tagdesc + // type + // tagvalue (list) + boost::python::tuple getXmpTag(std::string key); + // Return a tuple containing the name of the tag and its description. //boost::python::tuple tagDetails(std::string key); |