phonebookui/Phonebook2/inc/MPbk2ContactNavigationLoader.h
changeset 0 e686773b3f54
equal deleted inserted replaced
-1:000000000000 0:e686773b3f54
       
     1 /*
       
     2 * Copyright (c) 2005-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:  Phonebook 2 memory entry view contact navigation interface.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef MPBK2CONTACTNAVIGATIONLOADER_H
       
    19 #define MPBK2CONTACTNAVIGATIONLOADER_H
       
    20 
       
    21 //  INCLUDES
       
    22 #include <w32std.h>
       
    23 
       
    24 //  FORWARD DECLARATIONS
       
    25 class MVPbkContactLink;
       
    26 
       
    27 //  CLASS DECLARATION
       
    28 
       
    29 /**
       
    30  * Phonebook 2 contact navigation contact loading interface.
       
    31  */
       
    32 class MPbk2ContactNavigationLoader
       
    33     {
       
    34     public: // Interface
       
    35 
       
    36         /**
       
    37          * Change contact to a given contact.
       
    38          *
       
    39          * @param aContactLink  Link to the contact to display.
       
    40          */
       
    41         virtual void ChangeContactL(
       
    42                 const MVPbkContactLink& aContactLink ) = 0;
       
    43 
       
    44         /**
       
    45          * Returns a link to the current contact.
       
    46          *
       
    47          * @return  A link to the current contact.
       
    48          */
       
    49         virtual MVPbkContactLink* ContactLinkLC() const = 0;
       
    50 
       
    51     protected: // Disabled functions
       
    52         virtual ~MPbk2ContactNavigationLoader()
       
    53             {}
       
    54     };
       
    55 
       
    56 #endif // MPBK2CONTACTNAVIGATIONLOADER_H
       
    57 
       
    58 // End of File