📄 summationobserver.h
字号:
/**
*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -