Lines Matching defs:Entry
55 struct Entry
60 Entry()
65 Entry(ExifTag tag)
72 Entry(Entry const &other)
79 Entry(ExifEntry *entry)
85 ~Entry()
90 Entry &operator=(Entry const &other)
144 "Exif::Entry::getByte(): Format is not EXIF_FORMAT_BYTE");
158 "Exif::Entry::getAscii(): Format is not EXIF_FORMAT_ASCII");
168 "Exif::Entry::getShort(): Format is not EXIF_FORMAT_SHORT");
183 "Exif::Entry::getLong(): Format is not EXIF_FORMAT_LONG");
198 "Exif::Entry::getSLong(): Format is not EXIF_FORMAT_SLONG");
213 "Exif::Entry::getRational(): Format is not EXIF_FORMAT_RATIONAL");
228 "Exif::Entry::getSRational(): Format is not EXIF_FORMAT_SRATIONAL");
243 "Exif::Entry::setByte(): Format is not EXIF_FORMAT_BYTE");
258 "Exif::Entry::setAscii(): Format is not EXIF_FORMAT_ASCII");
269 "Exif::Entry::setShort(): Format is not EXIF_FORMAT_SHORT");
285 "Exif::Entry::setLong(): Format is not EXIF_FORMAT_LONG");
301 "Exif::Entry::setSLong(): Format is not EXIF_FORMAT_SLONG");
317 "Exif::Entry::setRational(): Format is not EXIF_FORMAT_RATIONAL");
333 "Exif::Entry::setSRational(): Format is not EXIF_FORMAT_SRATIONAL");
394 Entry operator[](ExifTag tag)
398 return Entry(result);
403 return Entry();
406 Entry operator[](unsigned int index)
409 return Entry(content_->entries[index]);
414 return Entry();
423 void add(Entry &entry)
428 void remove(Entry &entry)