Lines Matching defs:PythonContent
189 struct PythonContent : public Exif::Content
193 PythonContent() {}
194 PythonContent(Exif::Content const &other) : Exif::Content(other) {}
242 typedef WrappedObjectIterator<PythonContent, ExifContent *> iterator;
260 PythonContent ifdContent(object index)
506 class_<PythonContent::iterator>("ContentIterator", no_init)
507 .def("next", &PythonContent::iterator::next);
508 class_<PythonContent>("Content")
510 .def("__getitem__", &PythonContent::entry)
511 .def("__iter__", &PythonContent::__iter__)