epoc32/include/mw/aplistitemlist.h
author William Roberts <williamr@symbian.org>
Tue, 16 Mar 2010 16:12:26 +0000
branchSymbian2
changeset 2 2fe1408b6811
parent 1 666f914201fb
child 4 837f303aceeb
permissions -rw-r--r--
Final list of Symbian^2 public API header files
williamr@2
     1
/*
williamr@2
     2
* Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies). 
williamr@2
     3
* All rights reserved.
williamr@2
     4
* This component and the accompanying materials are made available
williamr@2
     5
* 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
     6
* which accompanies this distribution, and is available
williamr@2
     7
* at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
williamr@2
     8
*
williamr@2
     9
* Initial Contributors:
williamr@2
    10
* Nokia Corporation - initial contribution.
williamr@2
    11
*
williamr@2
    12
* Contributors:
williamr@2
    13
*
williamr@2
    14
* Description:  Declaration of the CApListItemList class.
williamr@2
    15
*
williamr@2
    16
*/
williamr@2
    17
williamr@2
    18
williamr@2
    19
#ifndef CAPLISTITEMLIST_H
williamr@2
    20
#define CAPLISTITEMLIST_H
williamr@2
    21
williamr@2
    22
// Deprecation warning
williamr@2
    23
#warning This header file has been deprecated. Will be removed in one of the next SDK releases.
williamr@2
    24
 
williamr@2
    25
 
williamr@2
    26
//  INCLUDES
williamr@2
    27
#include <e32base.h>
williamr@2
    28
#include <ApEngineVer.h>
williamr@2
    29
williamr@2
    30
// FORWARD DECLARATION
williamr@2
    31
williamr@2
    32
class CApListItem;
williamr@2
    33
williamr@2
    34
// CLASS DECLARATION
williamr@2
    35
/**
williamr@2
    36
*  A list of CApListItem-s pointers; items are owned.
williamr@2
    37
*/
williamr@2
    38
class CApListItemList : public CArrayPtrFlat<CApListItem>
williamr@2
    39
    {
williamr@2
    40
    public:  // Constructors and destructor
williamr@2
    41
williamr@2
    42
        /**
williamr@2
    43
        * C++ default constructor.
williamr@2
    44
        *
williamr@2
    45
        * @deprecated
williamr@2
    46
        */
williamr@2
    47
        IMPORT_C CApListItemList();
williamr@2
    48
williamr@2
    49
        /**
williamr@2
    50
        * Destructor. Items in the list are destroyed.
williamr@2
    51
        *
williamr@2
    52
        * @deprecated
williamr@2
    53
        */
williamr@2
    54
        IMPORT_C virtual ~CApListItemList();
williamr@2
    55
williamr@2
    56
    public:  // New methods
williamr@2
    57
williamr@2
    58
        /**
williamr@2
    59
        * Get pointer to the item having aUid,
williamr@2
    60
        * or NULL if no such item is in the
williamr@2
    61
        * list.
williamr@2
    62
        * @param aUid Uid of item to get.
williamr@2
    63
        * @return Pointer to the item having uid aUid, or NULL. Ownership
williamr@2
    64
        * not passed (the list still owns the item).
williamr@2
    65
        *
williamr@2
    66
        * @deprecated
williamr@2
    67
        */
williamr@2
    68
        IMPORT_C CApListItem* ItemForUid( TUint32 aUid ) const;
williamr@2
    69
williamr@2
    70
    };
williamr@2
    71
williamr@2
    72
#endif
williamr@2
    73
williamr@2
    74
// End of File