connectionutilities/ConnectionDialogs/ConnectionUiUtilities/NotifInc/ActiveOfflineWlanDisabledNote.h
changeset 0 5a93021fdf25
equal deleted inserted replaced
-1:000000000000 0:5a93021fdf25
       
     1 /*
       
     2 * Copyright (c) 2005 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:  Declaration of CActiveOfflineWlanDisabledNote
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __ACTIVE_OFFLINE_WLAN_DISABLED_NOTE_H__
       
    20 #define __ACTIVE_OFFLINE_WLAN_DISABLED_NOTE_H__
       
    21 
       
    22 // INCLUDES
       
    23 #include "OfflineWlanDisabledNoteNotif.h"
       
    24 
       
    25 /**
       
    26  * CActiveOfflineWlanDisabledNote class,
       
    27  * an active object for COfflineWlanDisabledNoteNotif
       
    28  */     
       
    29 NONSHARABLE_CLASS( CActiveOfflineWlanDisabledNote ) : public CActive
       
    30 {
       
    31 public:
       
    32     /**
       
    33     * Constructor
       
    34     */    
       
    35     CActiveOfflineWlanDisabledNote( COfflineWlanDisabledNoteNotif* aNotif );
       
    36 
       
    37     /**
       
    38     * Launch OfflineWlanDisabledNote setactive and starts active object
       
    39     */    
       
    40     void LaunchOfflineWlanDisabledNote();
       
    41     
       
    42     /**
       
    43     * Destructor
       
    44     */
       
    45     virtual ~CActiveOfflineWlanDisabledNote();
       
    46 
       
    47 protected:
       
    48     /**
       
    49     * DoCancel from CActive
       
    50     */    
       
    51       virtual void DoCancel();
       
    52       
       
    53     /**
       
    54     * RunL from CActive
       
    55     */      
       
    56     virtual void RunL();
       
    57     
       
    58 protected:
       
    59     TRequestStatus* iClientStatus;   ///< used for complete runl, not owned 
       
    60     COfflineWlanDisabledNoteNotif* iNotif; ///< poiter to notifer, not owned
       
    61               
       
    62 };         
       
    63 
       
    64 #endif // __ACTIVE_OFFLINE_WLAN_DISABLED_NOTE_H__
       
    65 
       
    66 // End of File