📄 testapp.cpp
字号:
/* testapp.cpp * * Test Application class * * Copyright 2004 Petteri Kangaslampi * * See license.txt for full copyright and license information.*/#include "testapp.h"#include "testdoc.h"const TUid KUidTest = { 0x011f9001 };TUid CTestApplication::AppDllUid() const { return KUidTest;}CApaDocument* CTestApplication::CreateDocumentL() { return new (ELeave) CTestDocument(*this);}// Application entry pointEXPORT_C CApaApplication *NewApplication() { return new CTestApplication;}// DLL entry pointGLDEF_C TInt E32Dll(TDllReason /*aReason*/) { return KErrNone;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -