graphicsapplication.cpp
来自「Symbian -画图程序 graphics-vc.rar」· C++ 代码 · 共 30 行
CPP
30 行
/* Copyright (c) 2004, Nokia. All rights reserved */
// INCLUDE FILES
#include "GraphicsDocument.h"
#include "GraphicsApplication.h"
// ============================ MEMBER FUNCTIONS ===============================
// -----------------------------------------------------------------------------
// CGraphicsApplication::CreateDocumentL()
// Creates CApaDocument object and returns a pointer to it
// -----------------------------------------------------------------------------
//
CApaDocument* CGraphicsApplication::CreateDocumentL()
{
return ( static_cast<CApaDocument*> ( CGraphicsDocument::NewL( *this ) ) );
}
// -----------------------------------------------------------------------------
// CGraphicsApplication::AppDllUid()
// Returns the UID for the FocusEvent application
// -----------------------------------------------------------------------------
//
TUid CGraphicsApplication::AppDllUid() const
{
return KUidGraphicsApp;
}
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?