diff options
author | Olivier Tilloy <olivier@tilloy.net> | 2009-11-30 20:47:13 +0100 |
---|---|---|
committer | Olivier Tilloy <olivier@tilloy.net> | 2009-11-30 20:47:13 +0100 |
commit | 1cfc6615e3339674ca0fb011813405c1c48fd193 (patch) | |
tree | 902d639a48f084412a0a3966a2404e1ba1714eb3 /src/exiv2wrapper.hpp | |
parent | 8b39401df47a8a8b667746a4142c825cc4409905 (diff) | |
download | pyexiv2-1cfc6615e3339674ca0fb011813405c1c48fd193.tar.gz |
Separate _XmpTag value setters for text, array and lang alt.
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 418fac7..8a0d885 100644 --- a/src/exiv2wrapper.hpp +++ b/src/exiv2wrapper.hpp @@ -108,7 +108,9 @@ public: // Constructor XmpTag(const std::string& key, Exiv2::Xmpdatum* datum=0); - //void setRawValue(const std::string& value); + void setTextValue(const std::string& value); + void setArrayValue(const boost::python::list& values); + void setLangAltValue(const boost::python::dict& values); const std::string getKey(); const std::string getExiv2Type(); |