calendarui/regionalplugins/inc/calenlunarpanic.h
changeset 45 b6db4fd4947b
parent 23 fd30d51f876b
child 46 ecd7b9840282
equal deleted inserted replaced
23:fd30d51f876b 45:b6db4fd4947b
     1 /*
       
     2 * Copyright (c) 2008 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:   Calendar Lunar Plugin 
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CALENLUNARPANIC_H
       
    20 #define CALENLUNARPANIC_H
       
    21 
       
    22 enum TCalenLunarPanic
       
    23     {
       
    24     EPanicLunarResourceLoading = 1,
       
    25     EPanicLunarEnvNotfound,
       
    26     };
       
    27 
       
    28 void Panic(TCalenLunarPanic aReason)
       
    29     {
       
    30     _LIT(KPanicText, "CalenLunarPlugin");
       
    31     User::Panic(KPanicText,aReason);
       
    32     }
       
    33 
       
    34 #endif