⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ddbouncingball_application.cpp

📁 symbian平台下的一个游戏源代码
💻 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 + -