globalqueryclosegameobserver.h

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

H
30
字号
#ifndef GLOBALQUERYCLOSEGAMEOBSERVER_H
#define GLOBALQUERYCLOSEGAMEOBSERVER_H


// CLASS DECLARATION

/**
*
* @class    MGlobalQueryCloseGameObserver GlobalQueryCloseGameObsever.h 
* @brief    This is an observer interface for a global query application based
*  on the standard Symbian OS architecture.  
*
* Copyright (c) EMCC Software Ltd 2003
* @version    1.0
* 
*/
class MGlobalQueryCloseGameObserver
{
public: 

    // Method for handling closing of the game. This method should be kept short as it is called
    // from within an active object
    virtual void CloseGameL() = 0;
    
};

#endif    // #ifndef GLOBALQUERYCLOSEGAMEOBSERVER_H

// End of File

⌨️ 快捷键说明

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