clocationexample.cpp
来自「这是一个关于s60基于c++的关于手机地图和定位的代码」· C++ 代码 · 共 36 行
CPP
36 行
/*
* ============================================================================
* Name : clocationexample.cpp
* Part of : Location Example
* Created : 21.05.2007 by Forum Nokia
* Description:
* Version : 1.0
* Copyright: Nokia Corporation
* ============================================================================
*/
#include <eikstart.h>
#include "clocationexampleapplication.h"
// -----------------------------------------------------------------------------
// NewApplication()
// Create an application, and return a pointer to it
// -----------------------------------------------------------------------------
EXPORT_C CApaApplication* NewApplication()
{
return ( static_cast<CApaApplication*> ( new CLocationExampleApplication ) );
}
// -----------------------------------------------------------------------------
// E32Main()
// Entry point function for Symbian Apps.
// -----------------------------------------------------------------------------
//
GLDEF_C TInt E32Main()
{
return EikStart::RunApplication( NewApplication );
}
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?