diff options
author | Olivier Tilloy <olivier@tilloy.net> | 2007-03-30 22:46:00 +0200 |
---|---|---|
committer | Olivier Tilloy <olivier@tilloy.net> | 2007-03-30 22:46:00 +0200 |
commit | ffb6b75a2b3229a97e40f7dea223520d29c608bc (patch) | |
tree | a562eeb0eac3ad3d7387e9d9b5d366bc8e576856 /src/libpyexiv2.hpp | |
parent | 5b9561b2f53982f76990ce63d5f44271ebc3923e (diff) | |
download | pyexiv2-ffb6b75a2b3229a97e40f7dea223520d29c608bc.tar.gz |
Removed methods isExigTagSet() and isIptcTagSet() as they are now useless thanks to exception management.
Diffstat (limited to 'src/libpyexiv2.hpp')
-rw-r--r-- | src/libpyexiv2.hpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/libpyexiv2.hpp b/src/libpyexiv2.hpp index 9f6d7c5..7178886 100644 --- a/src/libpyexiv2.hpp +++ b/src/libpyexiv2.hpp @@ -56,9 +56,6 @@ namespace LibPyExiv2 // image. boost::python::list getAvailableExifTags(); - // Return true if the required EXIF tag is set, false otherwise. - bool isExifTagSet(std::string key); - // Return a tuple containing the type (as a string) and the value // (as a string as well) of the required EXIF tag. // Throw an exception if the tag is not set. @@ -88,10 +85,6 @@ namespace LibPyExiv2 // even if a tag is present more than once. boost::python::list getAvailableIptcTags(); - // Return true if the required IPTC tag is set at least once, false - // otherwise. - bool isIptcTagSet(std::string key); - // Return a list of tuples, each containing the type (as a string) and // the value (as a string as well) of the required IPTC tag. // Throw an exception if the tag is not set. |