sipexstateviewnotifier.h

来自「an example for sip for symbian」· C头文件 代码 · 共 56 行

H
56
字号
/*
* ==============================================================================
*  Name        : MSIPExStateViewNotifier.h
*  Part of     : SIPExEngine
*  Interface   : 
*  Description : 
*  Version     : 
*
*  Copyright (c) 2004-2006 Nokia Corporation.
*  This material, including documentation and any related 
*  computer programs, is protected by copyright controlled by 
*  Nokia Corporation.
* ==============================================================================
*/

#ifndef MSIPEXSTATEVIEWNOTIFIER_H
#define MSIPEXSTATEVIEWNOTIFIER_H

// INCLUDES
#include    <e32base.h>

// CLASS DECLARATIONS
/**
* Interface for notifing view about status change and 
* any intresting changes.
*/
class MSIPExStateViewNotifier
    {
    public:
        /**
        * ShowStatusInfoL
        * Called when game status changes.
        * @param aText A free format text.
        */
        virtual void ShowStatusInfoL( const TDesC& aText ) = 0;

        /**
        * ShowInfoL
        * Called when the new info is available about engine state.
        * @param aText A 16-bit free format text.
        */
        virtual void ShowInfoL( const TDesC& aText ) = 0;

        /**
        * ShowInfoL
        * Called when the new info is available about engine state.
        * @param aText A 8-bit free format text.
        */
        virtual void ShowInfoL( const TDesC8& aText ) = 0;
    };

#endif // MSIPEXSTATEVIEWNOTIFIER_H

// End of file

⌨️ 快捷键说明

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