aboutsummaryrefslogtreecommitdiffstats
path: root/src/exiv2wrapper.hpp
diff options
context:
space:
mode:
authorOlivier Tilloy <olivier@tilloy.net>2010-01-21 00:20:20 +0100
committerOlivier Tilloy <olivier@tilloy.net>2010-01-21 00:20:20 +0100
commit034c4d00395e4b1716d9996133f7b43f409ebcf4 (patch)
tree91f191e3053aba6bc580581d74cc6d333b4d0ad1 /src/exiv2wrapper.hpp
parentf0dea80f17d7c78892b393c58f76743febc2846e (diff)
downloadpyexiv2-034c4d00395e4b1716d9996133f7b43f409ebcf4.tar.gz
Removed some unused legacy code.
Diffstat (limited to 'src/exiv2wrapper.hpp')
-rw-r--r--src/exiv2wrapper.hpp26
1 files changed, 1 insertions, 25 deletions
diff --git a/src/exiv2wrapper.hpp b/src/exiv2wrapper.hpp
index 65853bc..a1c28df 100644
--- a/src/exiv2wrapper.hpp
+++ b/src/exiv2wrapper.hpp
@@ -211,33 +211,9 @@ public:
// Throw an exception if the tag was not set.
void deleteXmpTag(std::string key);
- // Read and write access to the thumbnail embedded in the image.
-
- // Read-only ATM.
+ // Read access to the thumbnail embedded in the image.
boost::python::list previews();
- // Return a tuple containing the format of the thumbnail ("TIFF" or
- // "JPEG") and the thumbnail raw data as a string buffer.
- // Throw an exception if the thumbnail data cannot be accessed.
- //boost::python::tuple getThumbnailData();
-
- // Set the thumbnail of the image. The parameter is the thumbnail raw
- // jpeg data as a string buffer.
- //void setThumbnailData(std::string data);
-
- // Delete the thumbnail embedded in the image.
- //void deleteThumbnail();
-
- // Write the thumbnail to an image file.
- // A filename extension is appended to the given path according to the
- // image type of the thumbnail, so it should not include an extension.
- // Throw an exception if the image does not contain a thumbnail.
- //void dumpThumbnailToFile(const std::string path);
-
- // Set the image contained in the jpeg file passed as a parameter as
- // the thumbnail of the image.
- //void setThumbnailFromJpegFile(const std::string path);
-
private:
std::string _filename;
Exiv2::Image::AutoPtr _image;