aolabbubblesortapplication.cpp
来自「symbian开发得基础用书」· C++ 代码 · 共 24 行
CPP
24 行
// Copyright (c) 2006 Nokia Corporation.
#include "AOLabBubbleSortDocument.h"
#include "AOLabBubbleSortApplication.h"
// UID for the application
const TUid KUidAOLabBubbleSortApp = { 0x0515DFCE };
// Creates CApaDocument object
CApaDocument* CAOLabBubbleSortApplication::CreateDocumentL()
{
return CAOLabBubbleSortDocument::NewL(*this);
}
// Returns application UID
TUid CAOLabBubbleSortApplication::AppDllUid() const
{
return KUidAOLabBubbleSortApp;
}
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?