upnpsharing/upnpcontentserver/inc/upnpmetadataobserver.h
changeset 0 7f85d04be362
equal deleted inserted replaced
-1:000000000000 0:7f85d04be362
       
     1 /*
       
     2 * Copyright (c) 2006-2007 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:      metadata observer class definition
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 #ifndef __UPNPMETADATAOBSERVER_H__
       
    24 #define __UPNPMETADATAOBSERVER_H__
       
    25 
       
    26 // INCLUDE FILES
       
    27 #include <e32base.h>
       
    28 
       
    29 /**
       
    30  *  Callback class for receiving events from CupnpContentMetadataUtility
       
    31  *  @lib upnpcontentserver.lib
       
    32  *  @since S60 3.1
       
    33  */
       
    34 class MUpnpMetadataObserver
       
    35     {
       
    36 public:
       
    37     /**
       
    38      * Informs that CLF refresh has completed
       
    39      * @since S60 3.1
       
    40      */
       
    41     virtual void RefreshDoneL() = 0;
       
    42 
       
    43     /**
       
    44      * Virtual destructor
       
    45      */
       
    46     virtual ~MUpnpMetadataObserver() {};
       
    47     };
       
    48 
       
    49 #endif //UPNPMETADATAOBSERVER
       
    50 
       
    51 // End of File