mmmslsessionclosed.h

来自「The MMS List example demonstrates how to」· C头文件 代码 · 共 30 行

H
30
字号
/* Copyright (c) 2003, Nokia. All rights reserved */

#ifndef __MMMSLSESSIONCLOSED_H__
#define __MMMSLSESSIONCLOSED_H__

#include <e32def.h>
#include <badesca.h>

/**
*  Definitions of the interface between the mmslist environemnt
*  and the individual observer that are plugged to the mmslist.
*
*  The AppUi offers the interface that observer calls when
*  there has been error with MSV server session.
*/
class MMmslSessionClosed
    {
    public:
        /**
        * ServerDown
        * Notificate that MSV server session has been closed.
        * @param aReason Error number
        */
        virtual void ServerDown( TInt aReason ) = 0;
    };

#endif	// __MMMSLSESSIONCLOSED_H__

// End of File

⌨️ 快捷键说明

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