summationobserver.h

来自「基于Symbian平台下随心所欲控制屏幕的灯亮熄.在观看视频和发短信时这一点非常」· C头文件 代码 · 共 38 行

H
38
字号
/**
*
* MSummationObserver SummationObserver.h
* Interface class defines function to be called 
* when summation has been completed 
*
* Copyright (c) 2004 Nokia Corporation
* version 2.0
*/

#ifndef __SUMMATIONOBSERVER_H__
#define __SUMMATIONOBSERVER_H__

// INCLUDES

// System includes
#include <e32base.h>

// CLASS DECLARATION


class MSummationObserver
	{
public:
    /**
     * Function:    SummationComplete
     * Description: Pure virtual function to be implemented by derived classes
	 *              This function should be called on the observer when 
	 *              the summation is complete
	 * Params:      aFinalValue - the summation value
     */	
	virtual void SummationComplete (TInt aFinalValue) = 0;
	};

#endif	// __SUMMATIONOBSERVER_H__

// End of File

⌨️ 快捷键说明

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