clock2/clockui/uimodel/src/clkuimdlpanic.cpp
changeset 0 f979ecb2b13e
equal deleted inserted replaced
-1:000000000000 0:f979ecb2b13e
       
     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:  This is the source file for the Clock UI Model Panic and Fault definitions
       
    15 *
       
    16 */
       
    17 
       
    18 // System includes
       
    19 #include <e32base.h>
       
    20 
       
    21 // User includes
       
    22 #include "clkuimdlpanic.h"
       
    23 
       
    24 // Constants
       
    25 
       
    26 // ---------------------------------------------------------
       
    27 // Panic
       
    28 // rest of the details are commented in the header
       
    29 // ---------------------------------------------------------
       
    30 //
       
    31 GLDEF_C void Panic( TClkUiMdlPanic aPanic )
       
    32     {
       
    33     _LIT( KModuleName, "CLKUI-MDL-PANIC" );
       
    34     User::Panic( KModuleName, aPanic );
       
    35     }
       
    36 
       
    37 // ---------------------------------------------------------
       
    38 // Fault
       
    39 // rest of the details are commented in the header
       
    40 // ---------------------------------------------------------
       
    41 //
       
    42 GLDEF_C void Fault( TClkUiMdlFault aFault )
       
    43     {
       
    44     _LIT( KModuleName, "CLKUI-MDL-FAULT" );
       
    45     User::Panic( KModuleName, aFault );
       
    46     }
       
    47 
       
    48 // End of file