phonebookui/Phonebook2/UIControls/inc/MPbk2StoreInfoUiItem.h
branchRCL_3
changeset 20 f4a778e096c2
parent 0 e686773b3f54
equal deleted inserted replaced
19:5b6f26637ad3 20:f4a778e096c2
       
     1 /*
       
     2 * Copyright (c) 2002-2007 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:  An interface for store information UI item
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef MPBK2STOREINFOUIITEM_H
       
    21 #define MPBK2STOREINFOUIITEM_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32def.h>
       
    25 
       
    26 
       
    27 // CLASS DECLARATION
       
    28 
       
    29 /**
       
    30 *  An interface for store information UI item
       
    31 *
       
    32 */
       
    33 class MPbk2StoreInfoUiItem
       
    34     {
       
    35     public:  // Constructors and destructor
       
    36         
       
    37         /**
       
    38         * Destructor.
       
    39         */
       
    40         virtual ~MPbk2StoreInfoUiItem() {}
       
    41 
       
    42     public: // New functions
       
    43 
       
    44 		/**
       
    45 		* Returns the heading text of the information item
       
    46 		*
       
    47 		* @return the heading text of the item
       
    48 		*/
       
    49 		virtual const TDesC& HeadingText() const = 0;
       
    50 
       
    51 		/**
       
    52 		* Returns the item related to heading
       
    53 		*
       
    54 		* @return the item related to heading
       
    55 		*/
       
    56 		virtual const TDesC& ItemText() const = 0;
       
    57     };
       
    58 
       
    59 #endif      // MPBK2STOREINFOUIITEM_H
       
    60             
       
    61 // End of File