?? autolockdocument.cpp
字號(hào):
/*
* ============================================================================
* Name : CAutolockDocument from AutolockDocument.h
* Part of : Autolock
* Created : 05.02.2006 by ToBeReplacedByAuthor
* Implementation notes:
* Initial content was generated by Series 60 Application Wizard.
* Version :
* Copyright: ToBeReplacedByCopyright
* ============================================================================
*/
// INCLUDE FILES
#include "AutolockDocument.h"
#include "AutolockAppui.h"
// ================= MEMBER FUNCTIONS =======================
// constructor
CAutolockDocument::CAutolockDocument(CEikApplication& aApp)
: CAknDocument(aApp)
{
}
// destructor
CAutolockDocument::~CAutolockDocument()
{
}
// EPOC default constructor can leave.
void CAutolockDocument::ConstructL()
{
}
// Two-phased constructor.
CAutolockDocument* CAutolockDocument::NewL(
CEikApplication& aApp) // CAutolockApp reference
{
CAutolockDocument* self = new (ELeave) CAutolockDocument( aApp );
CleanupStack::PushL( self );
self->ConstructL();
CleanupStack::Pop();
return self;
}
// ----------------------------------------------------
// CAutolockDocument::CreateAppUiL()
// constructs CAutolockAppUi
// ----------------------------------------------------
//
CEikAppUi* CAutolockDocument::CreateAppUiL()
{
return new (ELeave) CAutolockAppUi;
}
// End of File
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -