alarmnotificationdocument.cpp

来自「this is used to get the alarm on the mob」· C++ 代码 · 共 50 行

CPP
50
字号
/* ====================================================================
 * File: alarmnotificationDocument.cpp
 * Created: 10/16/06
 * Author: 
 * Copyright (c): , All rights reserved
 * ==================================================================== */

#include "alarmnotificationAppUi.h"
#include "alarmnotificationDocument.h"

// Standard Symbian OS construction sequence
CAlarmNotificationDocument* CAlarmNotificationDocument::NewL(CEikApplication& aApp)
    {
    CAlarmNotificationDocument* self = NewLC(aApp);
    CleanupStack::Pop(self);
    return self;
    }

CAlarmNotificationDocument* CAlarmNotificationDocument::NewLC(CEikApplication& aApp)
    {
    CAlarmNotificationDocument* self = new (ELeave) CAlarmNotificationDocument(aApp);
    CleanupStack::PushL(self);
    self->ConstructL();
    return self;
    }

void CAlarmNotificationDocument::ConstructL()
    {
	// no implementation required
    }    

CAlarmNotificationDocument::CAlarmNotificationDocument(CEikApplication& aApp) : CAknDocument(aApp) 
    {
	// no implementation required
    }

CAlarmNotificationDocument::~CAlarmNotificationDocument()
    {
	// no implementation required
    }

CEikAppUi* CAlarmNotificationDocument::CreateAppUiL()
    {
    // Create the application user interface, and return a pointer to it,
    // the framework takes ownership of this object
    CEikAppUi* appUi = new (ELeave) CAlarmNotificationAppUi;
    return appUi;
    }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?