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