calendarapiexampleapp.cpp
来自「该源码实现个人日程管理以及备忘功能」· C++ 代码 · 共 64 行
CPP
64 行
/*
* ============================================================================
* Name : CCalendarAPIexampleApp from CalendarAPIexampleApp.h
* Part of : CalendarAPIexample
* Created : 02/22/2005 by Forum Nokia
* Version : 1.0
* Copyright: Nokia Corporation
* ============================================================================
*/
// INCLUDE FILES
#include "CalendarAPIexampleApp.h"
#include "CalendarAPIexampleDocument.h"
// ================= MEMBER FUNCTIONS =======================
// ---------------------------------------------------------
// CCalendarAPIexampleApp::AppDllUid()
// Returns application UID
// ---------------------------------------------------------
//
TUid CCalendarAPIexampleApp::AppDllUid() const
{
return KUidCalendarAPIexample;
}
// ---------------------------------------------------------
// CCalendarAPIexampleApp::CreateDocumentL()
// Creates CCalendarAPIexampleDocument object
// ---------------------------------------------------------
//
CApaDocument* CCalendarAPIexampleApp::CreateDocumentL()
{
return CCalendarAPIexampleDocument::NewL( *this );
}
// ================= OTHER EXPORTED FUNCTIONS ==============
//
// ---------------------------------------------------------
// NewApplication()
// Constructs CCalendarAPIexampleApp
// Returns: created application object
// ---------------------------------------------------------
//
EXPORT_C CApaApplication* NewApplication()
{
return new CCalendarAPIexampleApp;
}
// ---------------------------------------------------------
// E32Dll(TDllReason)
// Entry point function for Symbian OS Apps
// Returns: KErrNone: No error
// ---------------------------------------------------------
//
GLDEF_C TInt E32Dll( TDllReason )
{
return KErrNone;
}
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?