📄 testdoublebufferapplication.cpp
字号:
/*
============================================================================
Name : TestDoubleBufferApplication.cpp
Author :
Copyright : Your copyright notice
Description : Main application class
============================================================================
*/
// INCLUDE FILES
#include "TestDoubleBuffer.hrh"
#include "TestDoubleBufferDocument.h"
#include "TestDoubleBufferApplication.h"
// ============================ MEMBER FUNCTIONS ===============================
// -----------------------------------------------------------------------------
// CTestDoubleBufferApplication::CreateDocumentL()
// Creates CApaDocument object
// -----------------------------------------------------------------------------
//
CApaDocument* CTestDoubleBufferApplication::CreateDocumentL()
{
// Create an TestDoubleBuffer document, and return a pointer to it
return CTestDoubleBufferDocument::NewL(*this);
}
// -----------------------------------------------------------------------------
// CTestDoubleBufferApplication::AppDllUid()
// Returns application UID
// -----------------------------------------------------------------------------
//
TUid CTestDoubleBufferApplication::AppDllUid() const
{
// Return the UID for the TestDoubleBuffer application
return KUidTestDoubleBufferApp;
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -