videofeeds/clientapi/inc/MIptvVodDlClientObserver.h
changeset 0 96612d01cf9f
equal deleted inserted replaced
-1:000000000000 0:96612d01cf9f
       
     1 /*
       
     2 * Copyright (c) 2002-2005 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 the License "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 
       
    20 #ifndef __MIPTVVODDLCLIENTOBSERVER_H__
       
    21 #define __MIPTVVODDLCLIENTOBSERVER_H__
       
    22 
       
    23 #include "CIptvMyVideosGlobalFileId.h"
       
    24 
       
    25 class CIptvVodDlDownloadEvent;
       
    26 
       
    27 // CLASS DECLARATION
       
    28 
       
    29 /**
       
    30 * MIptvVodDlClientObserver
       
    31 * class specifies the interface for CIptvVodDlClient callback function.
       
    32 * Client must inherit this and implement the virtual functions.
       
    33 */
       
    34 class MIptvVodDlClientObserver
       
    35     {
       
    36         
       
    37     public: // New functions
       
    38 
       
    39     /**
       
    40     * NOTE: It is not allowed to delete CIptvVodDlClient object from this callback
       
    41     * function. Do it from other event (for example user initiated event or timer event).
       
    42     */
       
    43     virtual void HandleVodDlDownloadEvent(CIptvVodDlDownloadEvent& aEvent) = 0;  
       
    44     };
       
    45 
       
    46 #endif