oandxapplication.h

来自「Symbian OS C++ for Mobile Phones v3 Exam」· C头文件 代码 · 共 26 行

H
26
字号
// Copyright (c) 2004 - 2006, Symbian Software Ltd. All rights reserved.

#ifndef OANDXAPPLICATION_H
#define OANDXAPPLICATION_H

#include <aknapp.h>
#include <eikstart.h>

/** Application UID should correspond to UID3 (SECUREID) in the MMP file. */
const TUid KUidOandXApp = {0xE04E4143};		// e0 'N' 'A' 'C'

class COandXApplication : public CAknApplication
/**
	Standard application class tells the application framework
	this app's UID and creates the document object.
 */
     {
public:
	// implement CApaApplication
	virtual TUid AppDllUid() const;
	// implement CApaApplication, override CEikApplication
	virtual CApaDocument* CreateDocumentL();
    };

#endif // OANDXAPPLICATION_H

⌨️ 快捷键说明

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