contacts_plat/phonebook_2_common_ui_api/inc/MPbk2StartupObserver.h
branchRCL_3
changeset 63 f4a778e096c2
child 64 c1e8ba0c2b16
equal deleted inserted replaced
62:5b6f26637ad3 63:f4a778e096c2
       
     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 start-up observer interface.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MPBK2STARTUPOBSERVER_H
       
    20 #define MPBK2STARTUPOBSERVER_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <e32def.h>
       
    24 #include <MPbk2StartupMonitor.h>
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /**
       
    29  * Phonebook 2 start-up observer interface.
       
    30  */
       
    31 class MPbk2StartupObserver
       
    32     {
       
    33     public: // Interface
       
    34 
       
    35         /**
       
    36          * Called after the contact UI is ready.
       
    37          *
       
    38          * @param aStartupMonitor   The start-up monitor.
       
    39          */
       
    40         virtual void ContactUiReadyL(
       
    41                 MPbk2StartupMonitor& aStartupMonitor ) = 0;
       
    42 
       
    43     protected: // Disabled functions
       
    44         virtual ~MPbk2StartupObserver()
       
    45                 {}
       
    46     };
       
    47 
       
    48 #endif // MPBK2STARTUPOBSERVER_H
       
    49 
       
    50 // End of File