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

📄 myclockapp.h

📁 Symbian 平台上活动对象的一个实例。
💻 H
字号:
/*
============================================================================
 Name		: MyClockApp.h
 Author	  : 
 Copyright   : Your copyright notice
 Description : Declares main application class.
============================================================================
*/

#ifndef MYCLOCKAPP_H
#define MYCLOCKAPP_H

// INCLUDES
#include <aknapp.h>

// CONSTANTS
// UID of the application
const TUid KUidMyClock = { 0x0540691D };

// CLASS DECLARATION

/**
* CMyClockApp application class.
* Provides factory to create concrete document object.
* 
*/
class CMyClockApp : public CAknApplication
	{
	
	public: // Functions from base classes
	private:

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

#endif  // MYCLOCKAPP_H




⌨️ 快捷键说明

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