⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 alarmnotificationdocument.cpp

📁 this is used to get the alarm on the mobile you watch
💻 CPP
字号:
/* ====================================================================
 * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -