cameraobserver.h

来自「series60 应用程序开发的源代码 series60 应用程序开发的源代码」· C头文件 代码 · 共 44 行

H
44
字号
#ifndef __CAMERAOBSERVER_H__
#define __CAMERAOBSERVER_H__

// INCLUDES
// System includes
#include "e32def.h"

// CLASS DECLARATION
/**
*
* @class    MCameraObserver CameraObserver.h 
* @brief    This is a mixin class, for notification of
*    completion of asyncronous requests to the camera manager.
*
*
* Copyright (c) EMCC Software Ltd 2003
* @version    1.0
* 
*/
class MCameraObserver
{
public:    
    virtual void PictureTakenL() = 0;
    virtual void CameraReadyL() = 0;
    virtual void CameraErrorL(TInt aError) = 0;
};

/**
*
* @class    MCameraTimerObserver CameraObserver.h 
* @brief    This is a mixin class, for the notification.
*            of the timer request completion.
*
* Copyright (c) EMCC Software Ltd 2003
* @version    1.0
* 
*/
class MCameraTimerObserver
{
public:
    virtual void TimerCompleted() = 0;
};

#endif // __CAMERAOBSERVER_H__

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?