diff options
author | Olivier Tilloy <olivier@tilloy.net> | 2009-12-18 11:18:01 +0100 |
---|---|---|
committer | Olivier Tilloy <olivier@tilloy.net> | 2009-12-18 11:18:01 +0100 |
commit | 74f0257051d98ed0e73d2ee450cc26c253e53c63 (patch) | |
tree | 8162954c314b267b40b3d89c2ae0f6f92cc6fe71 /src/exiv2wrapper.cpp | |
parent | 25b6251e8692ab9df4d0a510b32ef37f3888ddb1 (diff) | |
download | pyexiv2-74f0257051d98ed0e73d2ee450cc26c253e53c63.tar.gz |
Complete documentation of the ExifTag class.
Diffstat (limited to 'src/exiv2wrapper.cpp')
-rw-r--r-- | src/exiv2wrapper.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/exiv2wrapper.cpp b/src/exiv2wrapper.cpp index 3ea5ec3..61c0d9a 100644 --- a/src/exiv2wrapper.cpp +++ b/src/exiv2wrapper.cpp @@ -488,7 +488,6 @@ ExifTag::ExifTag(const std::string& key, Exiv2::Exifdatum* datum): _key(key) const Exiv2::IfdId ifd = _datum->ifdId(); _type = Exiv2::TypeInfo::typeName(Exiv2::ExifTags::tagType(tag, ifd)); _name = Exiv2::ExifTags::tagName(tag, ifd); - _title = Exiv2::ExifTags::tagTitle(tag, ifd); _label = Exiv2::ExifTags::tagLabel(tag, ifd); _description = Exiv2::ExifTags::tagDesc(tag, ifd); _sectionName = Exiv2::ExifTags::sectionName(tag, ifd); @@ -515,11 +514,6 @@ const std::string ExifTag::getName() return _name; } -const std::string ExifTag::getTitle() -{ - return _title; -} - const std::string ExifTag::getLabel() { return _label; |