wlan_bearer/wlanldd/wlan_common/umac_common/inc/UmacDot11Roam.h
changeset 0 c40eb8fe8501
equal deleted inserted replaced
-1:000000000000 0:c40eb8fe8501
       
     1 /*
       
     2 * Copyright (c) 2002-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 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 UmacDot11Roam class
       
    15 *
       
    16 */
       
    17 
       
    18 /*
       
    19 * %version: 8 %
       
    20 */
       
    21 
       
    22 #ifndef WLANDOT11ROAM_H
       
    23 #define WLANDOT11ROAM_H
       
    24 
       
    25 #include "UmacDot11State.h"
       
    26 
       
    27 /**
       
    28 *  Roaming base class.
       
    29 *  A composite state, which holds the common behaviour of its 
       
    30 *  substates.
       
    31 *
       
    32 *  @lib wlanumac.lib
       
    33 *  @since Series 60 3.1
       
    34 */
       
    35 class WlanDot11Roam : public WlanDot11State
       
    36     {    
       
    37     public:
       
    38 
       
    39         /**
       
    40         * Destructor.
       
    41         */
       
    42         virtual ~WlanDot11Roam();
       
    43         
       
    44     protected:  // New functions
       
    45 
       
    46         /**
       
    47         * C++ default constructor.
       
    48         */
       
    49         WlanDot11Roam();
       
    50 
       
    51     private:
       
    52 
       
    53         // Prohibit copy constructor 
       
    54         WlanDot11Roam( const WlanDot11Roam& );
       
    55         // Prohibit assigment operator
       
    56         WlanDot11Roam& operator= ( const WlanDot11Roam& );         
       
    57     };
       
    58 
       
    59 #endif      // WLANDOT11ROAM_H
       
    60             
       
    61 // End of File