From 528565f796961abb449106038c8dfa03b525287d Mon Sep 17 00:00:00 2001 From: Olivier Tilloy Date: Thu, 29 Mar 2007 22:39:07 +0200 Subject: Getters and setters for EXIF and IPTC tags are now private (but beware! Python's concept of privacy does not totally forbid access to those members, it just makes them less straightforward), from the client's point of view, metadata should always be accessed using operator []. --- src/libpyexiv2.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libpyexiv2.hpp') diff --git a/src/libpyexiv2.hpp b/src/libpyexiv2.hpp index 619304a..9f6d7c5 100644 --- a/src/libpyexiv2.hpp +++ b/src/libpyexiv2.hpp @@ -43,7 +43,7 @@ namespace LibPyExiv2 public: // Constructors Image(std::string filename); - Image(const Image & image); + Image(const Image& image); void readMetadata(); void writeMetadata(); -- cgit