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

📄 progbuildapp.cpp

📁 如题 就是 这东西 为什么非要我 说到 20个 字 呢 看看这回 够 不
💻 CPP
字号:
// ProgBuildApp.cpp
//
// Copyright (c) 1999-2007 Symbian Software Ltd.  All rights reserved.
//
// $Change: 937687 $

// SYSTEM HEADERS
#include <eikstart.h>

// PROJECT HEADERS
#include "ProgBuildApp.h"
#include "ProgBuildDoc.h"

const TUid KUidProgBuildApp = { 0x10009387 };

// AppDllUid
TUid CProgBuildApplication::AppDllUid() const 
   {
   return KUidProgBuildApp;
   }

// CreateDocumentL: Called by the framework to create a new document
CApaDocument* CProgBuildApplication::CreateDocumentL() 
   {
   return CProgBuildDocument::NewL(*this);
   }

// EXPORTed functions
//
// Globals the App architecture/OS use to access this application

// NewApplication
LOCAL_C CApaApplication* NewApplication() 
   {
   return new CProgBuildApplication;
   }

GLDEF_C TInt E32Main()
    {
    return EikStart::RunApplication(NewApplication);
    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -