uifw/AvKon/aknconf/inc/aknconf.pan
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 19 Aug 2010 10:11:06 +0300
branchRCL_3
changeset 51 fcdfafb36fe7
parent 0 2f259fa3e83a
permissions -rw-r--r--
Revision: 201031 Kit: 201033

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  This file contains panic codes.
 *
*/


#ifndef __AKNCONF_PAN__
#define __AKNCONF_PAN__

/** aknconf application panic codes */
enum TAknConfPanics
    {
    EAknConfUi = 1
    // add further panics here
    };

inline void Panic(TAknConfPanics aReason)
    {
    _LIT(applicationName, "aknconf");
    User::Panic(applicationName, aReason);
    }

#endif // __AKNCONF_PAN__