70
|
1 |
/*
|
|
2 |
* Copyright (c) 2002 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:
|
|
15 |
* Declaration of the CApNetworkItemList class.
|
|
16 |
*
|
|
17 |
*/
|
|
18 |
|
|
19 |
|
|
20 |
// INCLUDE FILES
|
|
21 |
|
|
22 |
#include "ApNetworkItemList.h"
|
|
23 |
#include "ApNetworkItem.h"
|
|
24 |
#include "ApEngineLogger.h"
|
|
25 |
|
|
26 |
|
|
27 |
// CONSTANTS
|
|
28 |
|
|
29 |
LOCAL_D const TInt KGranularity = 4; ///< Granularity of the list.
|
|
30 |
|
|
31 |
// ================= MEMBER FUNCTIONS =======================
|
|
32 |
|
|
33 |
// C++ default constructor can NOT contain any code that
|
|
34 |
// might leave.
|
|
35 |
//
|
|
36 |
// ---------------------------------------------------------
|
|
37 |
// CApNetworkItemList::CApNetworkItemList
|
|
38 |
// ---------------------------------------------------------
|
|
39 |
//
|
|
40 |
EXPORT_C CApNetworkItemList::CApNetworkItemList()
|
|
41 |
: CArrayPtrFlat<CApNetworkItem>( KGranularity )
|
|
42 |
{
|
|
43 |
}
|
|
44 |
|
|
45 |
// Destructor
|
|
46 |
// ---------------------------------------------------------
|
|
47 |
// CApNetworkItemList::~CApNetworkItemList
|
|
48 |
// ---------------------------------------------------------
|
|
49 |
//
|
|
50 |
EXPORT_C CApNetworkItemList::~CApNetworkItemList()
|
|
51 |
{
|
|
52 |
}
|
|
53 |
|
|
54 |
|
|
55 |
// ---------------------------------------------------------
|
|
56 |
// CApNetworkItemList::ItemForUid
|
|
57 |
// ---------------------------------------------------------
|
|
58 |
//
|
|
59 |
EXPORT_C const CApNetworkItem* CApNetworkItemList::ItemForUid
|
|
60 |
( TUint32 aUid ) const
|
|
61 |
{
|
|
62 |
return NULL;
|
|
63 |
}
|
|
64 |
|
|
65 |
// End of File
|