williamr@2: /* williamr@2: * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies). williamr@2: * All rights reserved. williamr@2: * This component and the accompanying materials are made available williamr@2: * under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members williamr@2: * which accompanies this distribution, and is available williamr@2: * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". williamr@2: * williamr@2: * Initial Contributors: williamr@2: * Nokia Corporation - initial contribution. williamr@2: * williamr@2: * Contributors: williamr@2: * williamr@2: * Description: Declaration of the CApListItemList class. williamr@2: * williamr@2: */ williamr@2: williamr@2: williamr@2: #ifndef CAPLISTITEMLIST_H williamr@2: #define CAPLISTITEMLIST_H williamr@2: williamr@2: // Deprecation warning williamr@2: #warning This header file has been deprecated. Will be removed in one of the next SDK releases. williamr@2: williamr@2: williamr@2: // INCLUDES williamr@2: #include williamr@2: #include williamr@2: williamr@2: // FORWARD DECLARATION williamr@2: williamr@2: class CApListItem; williamr@2: williamr@2: // CLASS DECLARATION williamr@2: /** williamr@2: * A list of CApListItem-s pointers; items are owned. williamr@2: */ williamr@2: class CApListItemList : public CArrayPtrFlat williamr@2: { williamr@2: public: // Constructors and destructor williamr@2: williamr@2: /** williamr@2: * C++ default constructor. williamr@2: * williamr@2: * @deprecated williamr@2: */ williamr@2: IMPORT_C CApListItemList(); williamr@2: williamr@2: /** williamr@2: * Destructor. Items in the list are destroyed. williamr@2: * williamr@2: * @deprecated williamr@2: */ williamr@2: IMPORT_C virtual ~CApListItemList(); williamr@2: williamr@2: public: // New methods williamr@2: williamr@2: /** williamr@2: * Get pointer to the item having aUid, williamr@2: * or NULL if no such item is in the williamr@2: * list. williamr@2: * @param aUid Uid of item to get. williamr@2: * @return Pointer to the item having uid aUid, or NULL. Ownership williamr@2: * not passed (the list still owns the item). williamr@2: * williamr@2: * @deprecated williamr@2: */ williamr@2: IMPORT_C CApListItem* ItemForUid( TUint32 aUid ) const; williamr@2: williamr@2: }; williamr@2: williamr@2: #endif williamr@2: williamr@2: // End of File