📄 e32main.cpp.svn-base
字号:
/* Copyright (c) 2006, Nokia. All rights reserved */
/* developed by wayne chen, entel corp. */
/* date : 2006.08.22 */
#include "GenBookmark.h"
_LIT(KAppName, "GenBookmark");
// Entry Point
GLDEF_C TInt E32Main()
{
// create a clean-up stack
CTrapCleanup* cleanup = CTrapCleanup::New();
// create an instance of the class CGenBookmark, and call this classes
// DoFunctionL method to perform any processing
TRAPD(error,
CGenBookmark* app = CGenBookmark::NewLC();
app->DoFunctionL();
CleanupStack::PopAndDestroy(); // CGenBookmark
);
// check if an error occurred
__ASSERT_ALWAYS(error == KErrNone, User::Panic(KAppName, error));
// destroy clean-up stack
delete cleanup;
cleanup = NULL;
// return
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -