⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 finditemtestappapp.h

📁 这个代码实现了从一段字符提取手机号码、email、url等信息的功能。这个是symbian下实现的。
💻 H
字号:
/*
* ============================================================================
*  Name        : CFindItemTestAppApp from FindItemTestAppApp.h
*  Part of     : FindItemTestApp
*  Interface   : 
*  Description : Declares main application class.
*  Version     : 
*
*  Copyright (c) 2002-2006 Nokia Corporation.
*  This material, including documentation and any related 
*  computer programs, is protected by copyright controlled by 
*  Nokia Corporation.
* ============================================================================
*/

#ifndef FINDITEMTESTAPPAPP_H
#define FINDITEMTESTAPPAPP_H

// INCLUDES
#include <aknapp.h>

// CONSTANTS
// UID of the application
const TUid KUidFindItemTestApp = { 0xA0000184 };

// CLASS DECLARATION

/**
* CFindItemTestAppApp application class.
* Provides factory to create concrete document object.
*
*  @lib FindItemTestApp.exe
*  @since Series S60 3.0
*/
class CFindItemTestAppApp : public CAknApplication
    {
    public: // Functions from base classes
	private:

        /**
        * From CApaApplication, creates CFindItemTestAppDocument document object.
        * @return A pointer to the created document object.
        */
        CApaDocument* CreateDocumentL();
        
        /**
        * From CApaApplication, returns application's UID (KUidFindItemTestApp).
        * @return The value of KUidFindItemTestApp.
        */
        TUid AppDllUid() const;
    };

#endif

// End of File

⌨️ 快捷键说明

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