epoc32/include/mw/aplistitemlist.h
branchSymbian2
changeset 2 2fe1408b6811
parent 1 666f914201fb
child 4 837f303aceeb
     1.1 --- a/epoc32/include/mw/aplistitemlist.h	Tue Nov 24 13:55:44 2009 +0000
     1.2 +++ b/epoc32/include/mw/aplistitemlist.h	Tue Mar 16 16:12:26 2010 +0000
     1.3 @@ -1,1 +1,74 @@
     1.4 -aplistitemlist.h
     1.5 +/*
     1.6 +* Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies). 
     1.7 +* All rights reserved.
     1.8 +* This component and the accompanying materials are made available
     1.9 +* 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
    1.10 +* which accompanies this distribution, and is available
    1.11 +* at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
    1.12 +*
    1.13 +* Initial Contributors:
    1.14 +* Nokia Corporation - initial contribution.
    1.15 +*
    1.16 +* Contributors:
    1.17 +*
    1.18 +* Description:  Declaration of the CApListItemList class.
    1.19 +*
    1.20 +*/
    1.21 +
    1.22 +
    1.23 +#ifndef CAPLISTITEMLIST_H
    1.24 +#define CAPLISTITEMLIST_H
    1.25 +
    1.26 +// Deprecation warning
    1.27 +#warning This header file has been deprecated. Will be removed in one of the next SDK releases.
    1.28 + 
    1.29 + 
    1.30 +//  INCLUDES
    1.31 +#include <e32base.h>
    1.32 +#include <ApEngineVer.h>
    1.33 +
    1.34 +// FORWARD DECLARATION
    1.35 +
    1.36 +class CApListItem;
    1.37 +
    1.38 +// CLASS DECLARATION
    1.39 +/**
    1.40 +*  A list of CApListItem-s pointers; items are owned.
    1.41 +*/
    1.42 +class CApListItemList : public CArrayPtrFlat<CApListItem>
    1.43 +    {
    1.44 +    public:  // Constructors and destructor
    1.45 +
    1.46 +        /**
    1.47 +        * C++ default constructor.
    1.48 +        *
    1.49 +        * @deprecated
    1.50 +        */
    1.51 +        IMPORT_C CApListItemList();
    1.52 +
    1.53 +        /**
    1.54 +        * Destructor. Items in the list are destroyed.
    1.55 +        *
    1.56 +        * @deprecated
    1.57 +        */
    1.58 +        IMPORT_C virtual ~CApListItemList();
    1.59 +
    1.60 +    public:  // New methods
    1.61 +
    1.62 +        /**
    1.63 +        * Get pointer to the item having aUid,
    1.64 +        * or NULL if no such item is in the
    1.65 +        * list.
    1.66 +        * @param aUid Uid of item to get.
    1.67 +        * @return Pointer to the item having uid aUid, or NULL. Ownership
    1.68 +        * not passed (the list still owns the item).
    1.69 +        *
    1.70 +        * @deprecated
    1.71 +        */
    1.72 +        IMPORT_C CApListItem* ItemForUid( TUint32 aUid ) const;
    1.73 +
    1.74 +    };
    1.75 +
    1.76 +#endif
    1.77 +
    1.78 +// End of File