00001 /* 00002 * ============================================================================ 00003 * Name : ApListItemList.h 00004 * Part of : Access Point Engine 00005 * 00006 * Description: Declaration of the CApListItemList 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 CAPLISTITEMLIST_H 00023 #define CAPLISTITEMLIST_H 00024 00025 // Deprecation warning 00026 #warning This header file has been deprecated. Will be removed in one of the next SDK releases. 00027 00028 00029 // INCLUDES 00030 #include <e32base.h> 00031 #include <ApEngineVer.h> 00032 00033 // FORWARD DECLARATION 00034 00035 class CApListItem; 00036 00037 // CLASS DECLARATION 00041 class CApListItemList : public CArrayPtrFlat<CApListItem> 00042 { 00043 public: // Constructors and destructor 00044 00050 IMPORT_C CApListItemList(); 00051 00057 IMPORT_C virtual ~CApListItemList(); 00058 00059 public: // New methods 00060 00071 IMPORT_C CApListItem* ItemForUid( TUint32 aUid ) const; 00072 00073 }; 00074 00075 #endif 00076 00077 // End of File