pushmtm/Plugins/WhiteListAdapterInc/WhiteListAdapterPanic.h
branchRCL_3
changeset 65 8e6fa1719340
parent 0 84ad3b177aa3
equal deleted inserted replaced
64:6385c4c93049 65:8e6fa1719340
       
     1 /*
       
     2 * Copyright (c) 2002 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 the License "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: 
       
    15 *     Panic handling for white list management.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef WHITELISTADAPTERPANIC_H
       
    21 #define WHITELISTADAPTERPANIC_H
       
    22 
       
    23 // INCLUDE FILES
       
    24 	// System includes
       
    25 #include <e32def.h>
       
    26 
       
    27 // DATA TYPES
       
    28 
       
    29 enum TWhiteListAdapterPanics
       
    30 	{
       
    31 	ENoItemsToBeDisplayed,	///< A UI control tries to display items
       
    32 	EArrayIndexOutOfBounds,	///< Self-explanatory
       
    33 	ENullProxy				///< Physicial proxy cannot be found
       
    34 	};
       
    35 
       
    36 // FUNCTION PROTOTYPES
       
    37 
       
    38 /**
       
    39 * Panic handling in White List Adapter module. It's role is centralizing
       
    40 * panics.
       
    41 * @param aPanic Panic code, defined in THermesProtocolPanic.
       
    42 */
       
    43 void Panic( TInt aPanic );
       
    44 
       
    45 
       
    46 #endif	// WHITELISTADAPTERPANIC_H
       
    47 
       
    48 // End of file