timeoutnotifier.h

来自「NOKIA手机的基于C++的socket完整的开发API,非常好用」· C头文件 代码 · 共 27 行

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


#ifndef _TIMEOUTNOTIFIER_H_
#define _TIMEOUTNOTIFIER_H_

/*! 
  @class MTimeOutNotifier
  
  @discussion This class specifies the function to be called when a timeout occurs.
  Used in conjunction with CTimeOutTimer class
  */
class MTimeOutNotifier
    {
public:
/*!
  @function TimerExpired

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

#endif

⌨️ 快捷键说明

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