Add method that is actually required

Used in galleroob and present in all CapGallery modules
This commit is contained in:
Laurent Bachelier 2013-12-17 23:58:17 +01:00 committed by Florent
commit 4d74c13734

View file

@ -132,3 +132,12 @@ class ICapGallery(IBaseCap):
:rtype: :class:`Gallery`
"""
raise NotImplementedError()
def iter_gallery_images(self, gallery):
"""
Iterate images from a Gallery.
:type gallery: BaseGallery
:rtype: iter(BaseImage)
"""
raise NotImplementedError()