diff options
author | Olivier Tilloy <olivier@tilloy.net> | 2009-11-24 10:01:18 +0100 |
---|---|---|
committer | Olivier Tilloy <olivier@tilloy.net> | 2009-11-24 10:01:18 +0100 |
commit | ccfcadbc550a453aa1fa1b1e6b036eec0a902dd6 (patch) | |
tree | 52df322f9755a6262298f8cd9302f226ea2a6879 /src/exiv2wrapper.hpp | |
parent | 1bcfb83db7bd8b985b3172ad80b0cb155de7146c (diff) | |
download | pyexiv2-ccfcadbc550a453aa1fa1b1e6b036eec0a902dd6.tar.gz |
Separate _XmpTag value getters for text, array and lang alt.
Diffstat (limited to 'src/exiv2wrapper.hpp')
-rw-r--r-- | src/exiv2wrapper.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/exiv2wrapper.hpp b/src/exiv2wrapper.hpp index 76e5021..90e912f 100644 --- a/src/exiv2wrapper.hpp +++ b/src/exiv2wrapper.hpp @@ -108,14 +108,16 @@ public: // Constructor XmpTag(const std::string& key, Exiv2::Xmpdatum* datum=0); - void setRawValue(const std::string& value); + //void setRawValue(const std::string& value); const std::string getKey(); const std::string getType(); const std::string getName(); const std::string getTitle(); const std::string getDescription(); - const std::string getRawValue(); + const std::string getTextValue(); + const boost::python::list getArrayValue(); + const boost::python::dict getLangAltValue(); private: Exiv2::XmpKey _key; |