📄 ddbouncingball_application.cpp
字号:
// DDBouncingBall_Application.cpp
// ---------------------------
//
// Copyright (c) 2002 Symbian Ltd. All rights reserved.
//
#include "DDBouncingBall_Document.h"
#include "DDBouncingBall_Application.h"
static const TUid KUidDDBouncingBallApp = {0x101F8326};
CApaDocument* CDDBouncingBallApplication::CreateDocumentL()
{
// Create an DDBouncingBall document, and return a pointer to it
CApaDocument* document = CDDBouncingBallDocument::NewL(*this);
return document;
}
TUid CDDBouncingBallApplication::AppDllUid() const
{
// Return the UID for the DDBouncingBall Application
return KUidDDBouncingBallApp;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -