classicui_plat/extended_notifiers_api/inc/AlarmObserver.h
changeset 0 2f259fa3e83a
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     1 /*
       
     2 * Copyright (c) 2002-2007 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Interface class for CEikAlarmControl.                                             
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef ALARMOBSERVER_H
       
    19 #define ALARMOBSERVER_H
       
    20 
       
    21 // INCLUDES
       
    22 #include <uikon/eiksvfty.h>
       
    23 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
       
    24 #include <uikon/eiknotifyalert.h>
       
    25 #endif
       
    26 // FORWARD DECLARATIONS
       
    27 class CEikAlmControlSupervisor;
       
    28 class CEikServAppUiBase;
       
    29 
       
    30 // CLASS DECLARATION
       
    31 
       
    32 /**
       
    33 *  Interface class for CEikAlarmControl.
       
    34 */
       
    35 class MAlarmObserver : public MEikServAlarm
       
    36     {
       
    37 public: // New functions
       
    38     /**
       
    39     * Two-phased constructor.
       
    40     * @param aSupervisor CEikAlmControlSupervisor class.
       
    41     * @param aAppUi CEikServAppUiBase class.
       
    42     */
       
    43     virtual void ConstructL(
       
    44         CEikAlmControlSupervisor* aSupervisor,
       
    45         CEikServAppUiBase* aAppUi) = 0;
       
    46     };
       
    47 
       
    48 #endif // ALARMOBSERVER_H
       
    49 
       
    50 // End of File