wlansecuritysettings/wapisecuritysettingsui/src/wapisecuritysettingsuipanic.cpp
changeset 17 8840d3e38314
equal deleted inserted replaced
2:1c7bc153c08e 17:8840d3e38314
       
     1 /*
       
     2 * ============================================================================
       
     3 *  Name     : wapisecuritysettingsuipanic.cpp 
       
     4 *  Part of  : WAPI Security Settings UI
       
     5 *
       
     6 *  Description:
       
     7 *      Implementation of panic function.   
       
     8 *      
       
     9 *  Version: %version:  3 %
       
    10 *
       
    11 *  Copyright (C) 2008 Nokia Corporation.
       
    12 *  This material, including documentation and any related 
       
    13 *  computer programs, is protected by copyright controlled by 
       
    14 *  Nokia Corporation. All rights are reserved. Copying, 
       
    15 *  including reproducing, storing,  adapting or translating, any 
       
    16 *  or all of this material requires the prior written consent of 
       
    17 *  Nokia Corporation. This material also contains confidential 
       
    18 *  information which may not be disclosed to others without the 
       
    19 *  prior written consent of Nokia Corporation.
       
    20 *
       
    21 * ============================================================================
       
    22 */
       
    23 
       
    24 // INCLUDE FILES
       
    25 
       
    26 #include <e32std.h>
       
    27 
       
    28 #include "wapisecuritysettingsuipanic.h"
       
    29 
       
    30 
       
    31 // ================= LOCAL FUNCTIONS =======================
       
    32 
       
    33 // ---------------------------------------------------------
       
    34 // Panic()
       
    35 // ---------------------------------------------------------
       
    36 //
       
    37 void Panic( TWapiSecuritySettingsPanicCodes aPanic )
       
    38     {
       
    39     _LIT( KWapiSet, "wapisecuritysettingsui" );
       
    40     User::Panic( KWapiSet, aPanic );
       
    41     }
       
    42 
       
    43 
       
    44 // End of File