00001 /* 00002 * ============================================================================ 00003 * Name : ApNetworkItemList.h 00004 * Part of : Access Point Engine 00005 * 00006 * Description: Declaration of the CApNetworkItemList class. 00007 * Version: 00008 * 00009 * Copyright (C) 2002 Nokia Corporation. 00010 * This material, including documentation and any related 00011 * computer programs, is protected by copyright controlled by 00012 * Nokia Corporation. All rights are reserved. Copying, 00013 * including reproducing, storing, adapting or translating, any 00014 * or all of this material requires the prior written consent of 00015 * Nokia Corporation. This material also contains confidential 00016 * information which may not be disclosed to others without the 00017 * prior written consent of Nokia Corporation. 00018 * 00019 * ============================================================================ 00020 */ 00021 00022 #ifndef CAPNETWORKITEMLIST_H 00023 #define CAPNETWORKITEMLIST_H 00024 00025 // INCLUDES 00026 #include <e32base.h> 00027 #include <ApEngineVer.h> 00028 00029 // FORWARD DECLARATION 00030 00031 class CApNetworkItem; 00032 00033 // CLASS DECLARATION 00037 class CApNetworkItemList : public CArrayPtrFlat<CApNetworkItem> 00038 { 00039 public: // Constructors and destructor 00040 00045 IMPORT_C CApNetworkItemList(); 00046 00051 IMPORT_C virtual ~CApNetworkItemList(); 00052 00053 public: // New methods 00054 00064 IMPORT_C const CApNetworkItem* ItemForUid( TUint32 aUid ) const; 00065 00066 }; 00067 00068 // CAPNETWORKITEMLIST_H 00069 #endif 00070 00071 // End of File