Observer.java 238 Bytes
package com.huaheng.wms.facedete;

import android.graphics.Bitmap;

/**
 * 作者:created by meixi
 * 邮箱:13164716840@163.com
 * 日期:2018/8/29 16
 */
public interface Observer {

    void update(int intparam, Bitmap param);
}