timeoutnotifier.h

来自「一个很不错的Symbian程序源代码,里面有图片和一些对话框」· C头文件 代码 · 共 30 行

H
30
字号
// TIMEOUTNOTIFIER.H
//
// Copyright ( c ) 1997-1999 Symbian Ltd.  All rights reserved.
//


#ifndef __TIMEOUTNOTIFIER_H__
#define __TIMEOUTNOTIFIER_H__

// CLASS DECLARATION
/**
* MTimeOutNotifier
*  This class specifies the function to be called when a timeout occurs.
*  Used in conjunction with CTimeOutTimer class.
*/
class MTimeOutNotifier
    {
    public: // New functions

        /**
        * TimerExpired.
        * The function to be called when a timeout occurs.
        */
        virtual void TimerExpired() = 0;
    };

#endif // __TIMEOUTNOTIFIER_H__

// End of File

⌨️ 快捷键说明

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