connectionutilities/ConnectionDialogs/ConnectionUiUtilities/NotifInc/OfflineWlanDisabledNoteNotif.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 COfflineWlanDisabledNoteNotif
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __OFFLINE_WLAN_DISABLED_NOTE_H__
       
    20 #define __OFFLINE_WLAN_DISABLED_NOTE_H__
       
    21 
       
    22 // INCLUDES
       
    23 #include "ConnectionDialogsNotifBase.h"
       
    24 
       
    25 
       
    26 // FORWARD DECLARATION
       
    27 class CActiveOfflineWlanDisabledNote;
       
    28 /**
       
    29  * COfflineWlanDisabledNoteNotif class
       
    30  */
       
    31 NONSHARABLE_CLASS( COfflineWlanDisabledNoteNotif ) : 
       
    32                                             public CConnectionDialogsNotifBase
       
    33     {
       
    34     public:
       
    35         /**
       
    36         * NewL function
       
    37         * @param  -
       
    38         * return COfflineWlanDisabledNoteNotif*
       
    39         */
       
    40         static COfflineWlanDisabledNoteNotif* NewL( 
       
    41                                         const TBool aResourceFileResponsible );
       
    42 
       
    43 
       
    44         /**
       
    45         * RegisterL register the client notifier function
       
    46         * @param  -
       
    47         * return TNotifierInfo
       
    48         */
       
    49         TNotifierInfo RegisterL();
       
    50 
       
    51         /**
       
    52         * Start the Notifier
       
    53         * @param  aBuffer    Buffer
       
    54         * @param  aReplySlot Identifies which message argument to use for the 
       
    55         *                    reply. This message argument will refer to a 
       
    56         *                    modifiable descriptor, a TDes8 type, into which
       
    57         *                    data can be returned. 
       
    58         * @param  aMessage   Message
       
    59         * return -
       
    60         */
       
    61         void StartL( const TDesC8& aBuffer, TInt aReplySlot, 
       
    62                      const RMessagePtr2& aMessage );
       
    63                  
       
    64         /**
       
    65         * Cancel() the notifier
       
    66         * @param  -
       
    67         * return -
       
    68         */
       
    69         void Cancel();         
       
    70     
       
    71         /**
       
    72         * CompleteL the notifier is complete
       
    73         * @param  aStatus status
       
    74         * return  -
       
    75         */
       
    76         void CompleteL( TInt aStatus );            
       
    77                      
       
    78     protected:    
       
    79         /**
       
    80         * Constructor
       
    81         */
       
    82         COfflineWlanDisabledNoteNotif();    
       
    83     
       
    84     protected:
       
    85         ///< pointer to active object, owned
       
    86         CActiveOfflineWlanDisabledNote* iActiveNote; 
       
    87 
       
    88     };    
       
    89     
       
    90     
       
    91 #endif // __OFFLINE_WLAN_DISABLED_NOTE_H__
       
    92 
       
    93 // End of File
       
    94