phoneapp/phoneuicontrol/inc/mphonesecuritymodechangeobserver.h
branchRCL_3
changeset 6 38529f706030
equal deleted inserted replaced
5:2a26698d78ba 6:38529f706030
       
     1 /* 
       
     2 * Copyright (c) 2005-2010 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:
       
    15 *     A dynamic security mode state class observer interface.
       
    16 *
       
    17 */
       
    18 
       
    19 #ifndef MPHONESECURITYMODECHANGEOBSERVER_H
       
    20 #define MPHONESECURITYMODECHANGEOBSERVER_H
       
    21 
       
    22 #include <e32def.h>
       
    23 
       
    24 /**
       
    25  * Observer interface to observe dynamic security mode state changes.
       
    26  */
       
    27 class MPhoneSecurityModeChangeObserver
       
    28 	{
       
    29 public:
       
    30 	/**
       
    31 	 * Handles security mode state change. This is called only when state
       
    32 	 * actually changes.
       
    33 	 * 
       
    34 	 * @param aIsEnabled Defines if security mode is enabled.
       
    35 	 */
       
    36 	virtual void HandleSecurityModeChanged( TBool aIsEnabled ) = 0;
       
    37 	};
       
    38 
       
    39 #endif
       
    40 
       
    41 // End of file