meetingui/attendeeview/EngInc/MAttendeeItemList.h
changeset 0 f979ecb2b13e
equal deleted inserted replaced
-1:000000000000 0:f979ecb2b13e
       
     1 /*
       
     2 * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Defines interface of attendee item list.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef __MATTENDEE_ITEM_LIST_H__
       
    21 #define __MATTENDEE_ITEM_LIST_H__
       
    22 
       
    23 //  INCLUDES
       
    24 #include "MAttendeeItem.h"
       
    25 
       
    26 // CLASS DECLARATION
       
    27 /**
       
    28 * Define interface of attendee item list 
       
    29 */
       
    30 class MAttendeeItemList
       
    31     {
       
    32 	public:
       
    33         /**
       
    34         * Destructor.
       
    35         */
       
    36         virtual ~MAttendeeItemList(){};
       
    37 
       
    38     public: //New functions
       
    39         /**
       
    40         * Return number of items in MAttendeeList
       
    41         * @return number of items
       
    42         */
       
    43 		virtual TInt ItemCount() const = 0;
       
    44 
       
    45         /**
       
    46         * Return reference to MAttendeeItem
       
    47         * @param aIndex, The index of the object reference within the array.
       
    48         * @return MAttendeeItem, this include also CCalUser
       
    49         */
       
    50 		virtual MAttendeeItem& ItemAt( const TInt aIndex ) const = 0;
       
    51 
       
    52     };
       
    53 
       
    54 #endif // __MATTENDEE_ITEM_LIST_H__
       
    55 
       
    56 // End of File