package it.sephiroth.android.library.imagezoom.graphics; import android.graphics.Bitmap; import it.sephiroth.android.library.imagezoom.ImageViewTouchBase; /** * Base interface used in the {@link ImageViewTouchBase} view * * @author alessandro */ public interface IBitmapDrawable { Bitmap getBitmap(); }