📄 sliderdocument.cpp
字号:
/*
* ============================================================================
* Name : CSliderDocument from SliderDocument.h
* Part of : Slider
* Created : 26.02.2006 by ToBeReplacedByAuthor
* Implementation notes:
* Initial content was generated by Series 60 Application Wizard.
* Version :
* Copyright: ToBeReplacedByCopyright
* ============================================================================
*/
// INCLUDE FILES
#include "SliderDocument.h"
#include "SliderAppui.h"
// ================= MEMBER FUNCTIONS =======================
// constructor
CSliderDocument::CSliderDocument(CEikApplication& aApp)
: CAknDocument(aApp)
{
}
// destructor
CSliderDocument::~CSliderDocument()
{
}
// EPOC default constructor can leave.
void CSliderDocument::ConstructL()
{
}
// Two-phased constructor.
CSliderDocument* CSliderDocument::NewL(
CEikApplication& aApp) // CSliderApp reference
{
CSliderDocument* self = new (ELeave) CSliderDocument( aApp );
CleanupStack::PushL( self );
self->ConstructL();
CleanupStack::Pop();
return self;
}
// ----------------------------------------------------
// CSliderDocument::CreateAppUiL()
// constructs CSliderAppUi
// ----------------------------------------------------
//
CEikAppUi* CSliderDocument::CreateAppUiL()
{
return new (ELeave) CSliderAppUi;
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -