cmmanager/cmmgr/Plugins/cmpluginwlan/inc/cmpluginwlandataarray.h
changeset 20 9c97ad6591ae
parent 18 fcbbe021d614
child 21 b8e8e15e80f2
child 23 7ec726f93df1
child 28 860702281757
equal deleted inserted replaced
18:fcbbe021d614 20:9c97ad6591ae
     1 /*
       
     2 * Copyright (c) 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 "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 WLAN data holder array for WLAN plugin
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef WLAN_DATA_ARRAY_H
       
    19 #define WLAN_DATA_ARRAY_H
       
    20 
       
    21 // INCLUDES
       
    22 #include    <e32base.h>
       
    23 
       
    24 class CCmPluginWlanData;
       
    25 
       
    26 /**
       
    27  *  WLAN Plugin data holder class
       
    28  *  A list of CCmPluginWlanData-s pointers; items are owned.
       
    29  *
       
    30  *  ?more_complete_description
       
    31  *
       
    32  *  @since S60 3.2
       
    33  */
       
    34 NONSHARABLE_CLASS( CCmPluginWlanDataArray ) : public CArrayPtrFlat<CCmPluginWlanData>
       
    35     {
       
    36 
       
    37     public:  // Constructors and destructor
       
    38 
       
    39         /**
       
    40         * C++ default constructor.
       
    41         */
       
    42         CCmPluginWlanDataArray();
       
    43 
       
    44         /**
       
    45         * Destructor. Items in the list are destroyed.
       
    46         */
       
    47         virtual ~CCmPluginWlanDataArray();
       
    48 
       
    49 	};
       
    50 
       
    51 #endif // WLAN_DATA_ARRAY_H