cmmanager/cmmgr/Plugins/cmpluginwlan/src/cmpluginwlandataarray.cpp
branchRCL_3
changeset 58 83ca720e2b9a
parent 0 5a93021fdf25
equal deleted inserted replaced
57:05bc53fe583b 58:83ca720e2b9a
       
     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:  Implementation of WLan network data holder class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 
       
    21 #include "cmpluginwlandata.h"
       
    22 #include "cmpluginwlandataarray.h"
       
    23 
       
    24 
       
    25 // CONSTANTS
       
    26 
       
    27 LOCAL_D const TInt KGranularity = 4;    ///< Granularity of the list.
       
    28 
       
    29 // ================= MEMBER FUNCTIONS =======================
       
    30 
       
    31 // C++ default constructor can NOT contain any code that
       
    32 // might leave.
       
    33 //
       
    34 // ---------------------------------------------------------
       
    35 // CCmPluginWlanDataArray::CCmPluginWlanDataArray
       
    36 // ---------------------------------------------------------
       
    37 //
       
    38 CCmPluginWlanDataArray::CCmPluginWlanDataArray()
       
    39 : CArrayPtrFlat<CCmPluginWlanData>( KGranularity )
       
    40     {
       
    41     }
       
    42 
       
    43 // Destructor
       
    44 // ---------------------------------------------------------
       
    45 // CCmPluginWlanDataArray::~CCmPluginWlanDataArray
       
    46 // ---------------------------------------------------------
       
    47 //
       
    48 CCmPluginWlanDataArray::~CCmPluginWlanDataArray()
       
    49     {
       
    50 
       
    51     ResetAndDestroy();
       
    52 
       
    53     }
       
    54 
       
    55 
       
    56 //  End of File