hsfw_plat/hotspot_framework_client_api/inc/hssmgmtscaninfo.h
changeset 0 56b72877c1cb
equal deleted inserted replaced
-1:000000000000 0:56b72877c1cb
       
     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 "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:   Wrapper class for instantiating an implementation of
       
    15 *                MHssScanInfoBase and MHssScanInfoIteratorBase
       
    16 *                via ECom framework.
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 
       
    22 #ifndef HSSMGMTSCANINFO_H
       
    23 #define HSSMGMTSCANINFO_H
       
    24 
       
    25 // INCLUDES
       
    26 #include <ecom/ecom.h>
       
    27 #include "hssmgmtscaninfointerface.h"
       
    28 
       
    29 // CLASS DECLARATION
       
    30 /**
       
    31 * @brief Class for instantiating an implementation of MHssScanInfoBase
       
    32 * and MHssScanInfoIteratorBase via ECom.
       
    33 *
       
    34 * This class encapsulates both the HSS scan results and methods
       
    35 * needed for parsing and iterating through them.
       
    36 *
       
    37 * Scan results consist of a list of all the BSSs that the scan discovered
       
    38 * and their parameters. Methods from MHssScanInfoIteratorBase are used
       
    39 * to iterate through list of BSSs. Parameters of an individual BSS are
       
    40 * parsed with methods from MHssScanInfoBase.
       
    41 */
       
    42 class CHssMgmtScanInfo : public CBase, public MHssMgmtScanInfoBase,
       
    43                       public MHssMgmtScanInfoIteratorBase
       
    44     {
       
    45     public:  // Methods
       
    46 
       
    47        // Constructors and destructor
       
    48         
       
    49         /**
       
    50         * Static constructor.
       
    51         * @return Pointer to the constructed object.
       
    52         */
       
    53         inline static CHssMgmtScanInfo* NewL();
       
    54         
       
    55         /**
       
    56         * Destructor.
       
    57         */
       
    58         inline virtual ~CHssMgmtScanInfo();
       
    59 
       
    60         
       
    61     private: // Data
       
    62 
       
    63         /**
       
    64          * Identifies the instance of an implementation created by
       
    65          * the ECOM framework.
       
    66          */
       
    67         TUid iInstanceIdentifier;
       
    68     };
       
    69 
       
    70 #include "hssmgmtscaninfo.inl"
       
    71 
       
    72 #endif // HSSMGMTSCANINFO_H 
       
    73             
       
    74 // End of File