viewserverapplication.cpp

来自「一个用户视图创建的程序」· C++ 代码 · 共 23 行

CPP
23
字号
/* ====================================================================
 * File: ViewServerApplication.cpp
 * Created: 07/04/05
 * Author: 
 * Copyright (c): , All rights reserved
 * ==================================================================== */

#include "ViewServerDocument.h"
#include "ViewServerApplication.h"
#include "Settings.h"

CApaDocument* CViewServerApplication::CreateDocumentL() {  
  // Create an ViewServer document, and return a pointer to it
  CApaDocument* document = CViewServerDocument::NewL(*this);
  return document;
}

TUid CViewServerApplication::AppDllUid() const {
  // Return the UID for the ViewServer application
  return KUidViewServerApp;
}

⌨️ 快捷键说明

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