wlan_bearer/wlanldd/wlan_common/umac_common/inc/umacwharelease.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 WlanWhaRelease class.
       
    15 *
       
    16 */
       
    17 
       
    18 /*
       
    19 * %version: 8 %
       
    20 */
       
    21 
       
    22 #ifndef WLAN_WHA_RELEASE_H
       
    23 #define WLAN_WHA_RELEASE_H
       
    24 
       
    25 #include "UmacWsaCommand.h"
       
    26 
       
    27 /**
       
    28  *  Encapsulates the execution of Release WHA command.
       
    29  *
       
    30  *  @lib ?library
       
    31  *  @since S60 3.1
       
    32  */
       
    33 class WlanWhaRelease : public WlanWsaCommand
       
    34     {
       
    35 
       
    36 public:
       
    37     
       
    38     WlanWhaRelease() {};
       
    39 
       
    40     virtual ~WlanWhaRelease() {};
       
    41 
       
    42 private:
       
    43 
       
    44     /**
       
    45      * From ?base_class1.
       
    46      * ?description
       
    47      *
       
    48      * @since S60 3.1
       
    49      * @param ?arg1 ?description
       
    50      */
       
    51     virtual void Entry( WlanContextImpl& aCtxImpl );
       
    52 
       
    53     /**
       
    54      * From ?base_class1.
       
    55      * ?description
       
    56      *
       
    57      * @since S60 3.1
       
    58      * @param ?arg1 ?description
       
    59      */
       
    60 #ifndef NDEBUG 
       
    61         virtual const TInt8* GetStateName( TUint8& aLength ) const;
       
    62 #endif // !NDEBUG 
       
    63 
       
    64     /**
       
    65      * From ?base_class1.
       
    66      * ?description
       
    67      *
       
    68      * @since S60 3.1
       
    69      * @param ?arg1 ?description
       
    70      */
       
    71     virtual void CommandResponse( 
       
    72         WlanContextImpl& aCtxImpl, 
       
    73         WHA::TCommandId aCommandId, 
       
    74         WHA::TStatus aStatus,
       
    75         const WHA::UCommandResponseParams& aCommandResponseParams );
       
    76 
       
    77     // Prohibit copy constructor.
       
    78     WlanWhaRelease( const WlanWhaRelease& );
       
    79     // Prohibit assigment operator.
       
    80     WlanWhaRelease& operator= ( const WlanWhaRelease& );
       
    81 
       
    82 private: // data
       
    83 
       
    84 #ifndef NDEBUG
       
    85     /**
       
    86      * name of the state
       
    87      */
       
    88     static const TInt8  iName[];
       
    89 #endif 
       
    90     };
       
    91 
       
    92 #endif // WLAN_WHA_RELEASE_H