sipexapp.h

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

H
58
字号
/*
* ==============================================================================
*  Name        : SIPExApp.h
*  Part of     : SIPEx
*  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 __CSIPEXAPP_H__
#define __CSIPEXAPP_H__

//  INCLUDES

#include <eikapp.h>

// CONSTANTS
const TUid KUidSIPExApp = { 0xA00001EB };

// CLASS DECLARATION

/**
* The application class.
* This class is the application part of the CKON application framework 
* for the SIPEx game Application. Creates document class.
*/
class CSIPExApp : public CEikApplication
    {
        
    public: // Functions from base classes

        /**
        * From CApaApplication
        * Gets the application specific UID	 	 
        * @return The application specific UID
        */        
        TUid AppDllUid() const;
                            
    protected:  // Functions from base classes
        
        /**
        * From CApaApplication
        * Creates an instance of the document class
        * @return A pointer to the created document instance
        */        
        CApaDocument* CreateDocumentL();
    };

#endif      // __CSIPEXAPP_H__  
            
// End of File

⌨️ 快捷键说明

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