package Camera; public interface LiveCamEvent { void onDetectedQRCode(String qrCode); void onFrontalFaceDetector(boolean hasface, int width, int height); void onProfileFaceDetector(boolean hasface, int width, int height); void onEyeDetector(boolean hasEye); void onLog(String log); void onBlink(int counter); void onDoubleBlink(int counter); void onStartCapturing(); void onIntervalUpdate(); }