aboutsummaryrefslogtreecommitdiffstats
path: root/src/exiv2wrapper.hpp
diff options
context:
space:
mode:
authorOlivier Tilloy <olivier@tilloy.net>2009-11-24 10:01:18 +0100
committerOlivier Tilloy <olivier@tilloy.net>2009-11-24 10:01:18 +0100
commitccfcadbc550a453aa1fa1b1e6b036eec0a902dd6 (patch)
tree52df322f9755a6262298f8cd9302f226ea2a6879 /src/exiv2wrapper.hpp
parent1bcfb83db7bd8b985b3172ad80b0cb155de7146c (diff)
downloadpyexiv2-ccfcadbc550a453aa1fa1b1e6b036eec0a902dd6.tar.gz
Separate _XmpTag value getters for text, array and lang alt.
Diffstat (limited to 'src/exiv2wrapper.hpp')
-rw-r--r--src/exiv2wrapper.hpp6
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;