ncdengine/inc/ncdserverreportoperation.h
changeset 0 ba25891c3a9e
equal deleted inserted replaced
-1:000000000000 0:ba25891c3a9e
       
     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:   Download operation interface definition
       
    15 *
       
    16 */
       
    17 	
       
    18 
       
    19 #ifndef M_NCD_SERVER_REPORT_OPERATION_H
       
    20 #define M_NCD_SERVER_REPORT_OPERATION_H
       
    21 
       
    22 #include <e32cmn.h>
       
    23 
       
    24 #include "ncdoperation.h"
       
    25 #include "ncdinterfaceids.h"
       
    26 #include "ncdoperationdatatypes.h"
       
    27 
       
    28 /**
       
    29  *  Server report operation interface.
       
    30  *
       
    31  *  Server reports may be sent to the server to inform about the success of
       
    32  *  ownload and install operations.
       
    33  *
       
    34  *  @see MNcdServerReportManager
       
    35  *  @see MNcdServerReportOperationObserver
       
    36  *  
       
    37  *  
       
    38  */
       
    39 class MNcdServerReportOperation : public MNcdOperation
       
    40     {
       
    41     
       
    42 public:
       
    43 
       
    44     /**
       
    45      * Unique identifier for the interface, required for all MCatalogsBase interfaces.
       
    46      *
       
    47      * 
       
    48      */
       
    49     enum { KInterfaceUid = ENcdServerReportOperationUid };    
       
    50     
       
    51 
       
    52 protected:
       
    53 
       
    54     /**
       
    55     * Destructor.
       
    56     *
       
    57     * @see MCatalogsBase::~MCatalogsBase
       
    58     */
       
    59     virtual ~MNcdServerReportOperation() {}
       
    60 
       
    61     };
       
    62 	
       
    63 	
       
    64 #endif //  M_NCD_SERVER_REPORT_OPERATION_H