ncdengine/provider/server/inc/ncdsubscriptionmanagerobserver.h
changeset 4 32704c33136d
equal deleted inserted replaced
-1:000000000000 4:32704c33136d
       
     1 /*
       
     2 * Copyright (c) 2006 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:  
       
    15 *
       
    16 */
       
    17 	
       
    18 
       
    19 #ifndef M_NCD_SUBSCRIPTIONMANAGER_OBSERVER_H
       
    20 #define M_NCD_SUBSCRIPTIONMANAGER_OBSERVER_H
       
    21 
       
    22 
       
    23 /**
       
    24  *  Server side observer interface for operations.
       
    25  *  
       
    26  * This interface offers subscription manager a way to inform
       
    27  * operations that requested tasks are complete.
       
    28  *
       
    29  *  @since S60 v3.2
       
    30  */
       
    31 class MNcdSubscriptionManagerObserver
       
    32     {
       
    33     
       
    34 public:
       
    35 
       
    36     /**
       
    37      * Called when internalization of given subscription or subscriptions
       
    38      * into subscription manager is complete.
       
    39      *
       
    40      * @param aOperation aError KErrNone if completed correctly, otherwise
       
    41      *        system-wide error code.
       
    42      */
       
    43     virtual void SubscriptionsInternalizeComplete( TInt aError ) = 0;
       
    44 
       
    45     };
       
    46     
       
    47 #endif //  M_NCD_SUBSCRIPTIONMANAGER_OBSERVER_H