pressrv_plat/publisher_api/inc/msimplepublishobserver.h
changeset 0 c8caa15ef882
equal deleted inserted replaced
-1:000000000000 0:c8caa15ef882
       
     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:    SIMPLE Engine publish callback observer
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef M_simplepublishobserver_H
       
    22 #define M_simplepublishobserver_H
       
    23 
       
    24 #include <e32std.h>
       
    25 
       
    26 /**
       
    27  *  MSimplePublishObserver
       
    28  *
       
    29  *  SIMPLE Engine publish callback observer
       
    30  *
       
    31  *  @lib simpleengine
       
    32  *  @since S60 3.2
       
    33  */
       
    34 
       
    35 class MSimplePublishObserver
       
    36     {
       
    37 
       
    38 public:
       
    39 
       
    40     /**
       
    41      * Callback for publish request completion
       
    42      *
       
    43      * @since Series60 3.2
       
    44      * @param aOpid operation id
       
    45      * @param aStatus completion status
       
    46      */
       
    47     virtual void PublishReqCompleteL( TInt aOpid, TInt aStatus) = 0;
       
    48 
       
    49     /**
       
    50      * Callback for publish termination
       
    51      *
       
    52      * @since Series60 3.2
       
    53      * @param aOpid operation id
       
    54      */
       
    55     virtual void PublishTerminatedL( TInt aOpid ) = 0;
       
    56 
       
    57     };
       
    58 
       
    59 #endif
       
    60 
       
    61 // End of File