wlan_bearer/wlanldd/wlan_common/umac_common/inc/umacscanmodestopped.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 TWlanScanModeStopped class.
       
    15 *
       
    16 */
       
    17 
       
    18 /*
       
    19 * %version: 5 %
       
    20 */
       
    21 
       
    22 #ifndef T_WLANSCANMODESTOPPED_H
       
    23 #define T_WLANSCANMODESTOPPED_H
       
    24 
       
    25 #include "umacscanfsm.h"
       
    26 
       
    27 /**
       
    28  *  Scan stopped state.
       
    29  *
       
    30  *  @lib wlanumac.lib
       
    31  *  @since S60 v3.1
       
    32  */
       
    33 class TWlanScanModeStopped : public TWlanScanFsm
       
    34     {
       
    35 
       
    36 public:
       
    37 
       
    38     TWlanScanModeStopped() {};
       
    39 
       
    40 private:
       
    41 
       
    42     // from base class TWlanScanFsm
       
    43 
       
    44     /**
       
    45      * From TWlanScanFsm.
       
    46      * ?description
       
    47      *
       
    48      * @since S60 3.1
       
    49      * @param ?arg1 ?description
       
    50      */
       
    51     virtual void Entry( WlanScanFsmCntx& aCnxt );
       
    52 
       
    53     /**
       
    54      * From TWlanScanFsm.
       
    55      * ?description
       
    56      *
       
    57      * @since S60 3.1
       
    58      * @param ?arg1 ?description
       
    59      */
       
    60     virtual void StartScanningMode( WlanScanFsmCntx& aCnxt );
       
    61 
       
    62     /**
       
    63      * From TWlanScanFsm.
       
    64      * ?description
       
    65      *
       
    66      * @since S60 3.1
       
    67      * @param ?arg1 ?description
       
    68      */
       
    69     virtual void StopScanningMode( WlanScanFsmCntx& aCnxt );
       
    70 
       
    71     // Prohibit copy constructor
       
    72     TWlanScanModeStopped( const TWlanScanModeStopped& );
       
    73     // Prohibit assigment operator
       
    74     TWlanScanModeStopped& operator= ( const TWlanScanModeStopped& );    
       
    75     };
       
    76 
       
    77 #endif // T_WLANSCANMODESTOPPED_H