📄 tictactoedocument.cpp
字号:
/*
* ==============================================================================
* Name : TicTacToeDocument.cpp
* Part of : TicTacToe
* Description :
* Version :
*
* Copyright (c) 2005 Nokia Corporation.
* ==============================================================================
*/
// INCLUDE FILES
#include "TicTacToeAppUi.h"
#include "TicTacToeDocument.h"
// ============================ MEMBER FUNCTIONS ===============================
// -----------------------------------------------------------------------------
//
//
// -----------------------------------------------------------------------------
//
CTicTacToeDocument* CTicTacToeDocument::NewL(CEikApplication& aApp)
{
CTicTacToeDocument* self = NewLC(aApp);
CleanupStack::Pop(self);
return self;
}
// -----------------------------------------------------------------------------
//
//
// -----------------------------------------------------------------------------
//
CTicTacToeDocument* CTicTacToeDocument::NewLC(CEikApplication& aApp)
{
CTicTacToeDocument* self = new (ELeave) CTicTacToeDocument(aApp);
CleanupStack::PushL(self);
self->ConstructL();
return self;
}
// -----------------------------------------------------------------------------
//
//
// -----------------------------------------------------------------------------
//
void CTicTacToeDocument::ConstructL()
{
// No implementation required
}
// -----------------------------------------------------------------------------
//
//
// -----------------------------------------------------------------------------
//
CTicTacToeDocument::CTicTacToeDocument(CEikApplication& aApp) : CAknDocument(aApp)
{
// No implementation required
}
// -----------------------------------------------------------------------------
//
//
// -----------------------------------------------------------------------------
//
CTicTacToeDocument::~CTicTacToeDocument()
{
// No implementation required
}
// -----------------------------------------------------------------------------
//
//
// -----------------------------------------------------------------------------
//
CEikAppUi* CTicTacToeDocument::CreateAppUiL()
{
// Create the application user interface, and return a pointer to it
return(static_cast<CEikAppUi*>(new (ELeave) CTicTacToeAppUi));
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -