mmmw_plat/progressive_download_api/inc/MProgressiveDownloadUtility.h
changeset 33 5e8b14bae8c3
parent 28 ebf79c79991a
child 36 73253677b50a
equal deleted inserted replaced
28:ebf79c79991a 33:5e8b14bae8c3
     1 /*
       
     2 * Copyright (c) 2004 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:  Interface definition for the ProgressiveDownloadUtility functions.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef __MPROGRESSIVEDOWNLOADUTILITY_H__
       
    21 #define __MPROGRESSIVEDOWNLOADUTILITY_H__
       
    22 
       
    23 
       
    24 #include <BrCtlDownloadObserver.h>
       
    25 
       
    26 
       
    27 class MProgessiveDownloadUtility//:public MBrCtlDownloadObserver
       
    28 	{
       
    29 	public:
       
    30 	   virtual void HandleDownloadEventL(TUint aTransactionID,                 
       
    31                                          TBrCtlDownloadEvent aEvent,
       
    32                                          TUint aValue)=0;
       
    33 	};
       
    34 	
       
    35 	
       
    36 class MProgressiveDownloadUtilityCallback
       
    37 	{
       
    38 	public:
       
    39 	    virtual void Paused()=0;
       
    40 	   	virtual void Playing()=0;	
       
    41 	   
       
    42 	};
       
    43 
       
    44 	
       
    45 #endif