animationapplication.cpp
来自「symbian,使用dll服务捕获按键,比设置优先级更能提高按键响应.」· C++ 代码 · 共 31 行
CPP
31 行
/* Copyright (c) 2004, Nokia. All rights reserved */
// INCLUDE FILES
#include "animationdocument.h"
#include "animationapplication.h"
// ============================ MEMBER FUNCTIONS ===============================
// -----------------------------------------------------------------------------
// CAnimationApplication::CreateDocumentL()
// Creates an Animation document and returns a pointer to it.
// -----------------------------------------------------------------------------
//
CApaDocument* CAnimationApplication::CreateDocumentL()
{
CApaDocument* document = CAnimationDocument::NewL( *this );
return document;
}
// -----------------------------------------------------------------------------
// CAnimationApplication::AppDllUid()
// Returns the UID for the Animation application.
// -----------------------------------------------------------------------------
//
TUid CAnimationApplication::AppDllUid() const
{
return KUidAnimationApp;
}
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?