📄 example2dapp.cpp
字号:
/*
============================================================================
* Name : CExample2DApp.cpp
* Part of : 2DExample
* Description : Implementation of CExample2DApp
* Copyright (c) 2007 Nokia Corporation
============================================================================
*/
// INCLUDE FILES
#include <eikstart.h>
#include "Example2DApp.h"
#include "Example2DDocument.h"
TUid CExample2DApp::AppDllUid() const
{
return KUidExample2D;
}
CApaDocument* CExample2DApp::CreateDocumentL()
{
return CExample2DDocument::NewL( *this );
}
TFileName CExample2DApp::ResourceFileName() const
{
return TFileName();
}
EXPORT_C CApaApplication* NewApplication()
{
return new CExample2DApp;
}
// ---------------------------------------------------------
// E32Main()
// Entry point function for Symbian OS v9 EXE Application
// ---------------------------------------------------------
//
GLDEF_C TInt E32Main()
{
return EikStart::RunApplication( NewApplication );
}
// End of file
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -