wlan_bearer/wlanldd/wlan_common/umac_common/inc/umacscanmoderunning.h
changeset 0 c40eb8fe8501
equal deleted inserted replaced
-1:000000000000 0:c40eb8fe8501
       
     1 /*
       
     2 * Copyright (c) 2005-2006 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:   Declaration of the TWlanScanModeRunning class.
       
    15 *
       
    16 */
       
    17 
       
    18 /*
       
    19 * %version: 5 %
       
    20 */
       
    21 
       
    22 #ifndef T_WLANSCANMODERUNNING_H
       
    23 #define T_WLANSCANMODERUNNING_H
       
    24 
       
    25 #include "umacscanfsm.h"
       
    26 
       
    27 /**
       
    28  *  Scan executing state.
       
    29  *
       
    30  *  @lib wlanumac.lib
       
    31  *  @since S60 v3.1
       
    32  */
       
    33 class TWlanScanModeRunning : public TWlanScanFsm
       
    34     {
       
    35 
       
    36 public:
       
    37 
       
    38     TWlanScanModeRunning() {};
       
    39 
       
    40     /**
       
    41      * ?description
       
    42      *
       
    43      * @since S60 3.1
       
    44      * @param ?arg1 ?description
       
    45      * @param ?arg2 ?description
       
    46      * @return ?description
       
    47      */
       
    48 
       
    49 private:
       
    50 
       
    51     // from base class TWlanScanFsm
       
    52 
       
    53     /**
       
    54      * From TWlanScanFsm.
       
    55      * ?description
       
    56      *
       
    57      * @since S60 3.1
       
    58      * @param ?arg1 ?description
       
    59      */
       
    60     virtual void Entry( WlanScanFsmCntx& aCnxt );
       
    61 
       
    62     /**
       
    63      * From TWlanScanFsm.
       
    64      * ?description
       
    65      *
       
    66      * @since S60 3.1
       
    67      * @param ?arg1 ?description
       
    68      * @param ?arg2 ?description
       
    69      * @return ?description
       
    70      */
       
    71     virtual void StopScanningMode( WlanScanFsmCntx& aCnxt );
       
    72 
       
    73     /**
       
    74      * From TWlanScanFsm.
       
    75      * ?description
       
    76      *
       
    77      * @since S60 3.1
       
    78      * @param ?arg1 ?description
       
    79      * @param ?arg2 ?description
       
    80      * @return ?description
       
    81      */
       
    82     virtual void OnScanningModeStopped( WlanScanFsmCntx& aCnxt );
       
    83 
       
    84     // Prohibit copy constructor
       
    85     TWlanScanModeRunning( const TWlanScanModeRunning& );
       
    86     // Prohibit assigment operator
       
    87     TWlanScanModeRunning& operator= ( const TWlanScanModeRunning& );    
       
    88 
       
    89     };
       
    90 
       
    91 
       
    92 #endif // T_WLANSCANMODERUNNING_H