upnpharvester/mdhserver/inc/client/mmdhclient.h
branchIOP_Improvements
changeset 40 08b5eae9f9ff
parent 39 6369bfd1b60d
child 41 b4d83ea1d6e2
equal deleted inserted replaced
39:6369bfd1b60d 40:08b5eae9f9ff
     1 /*
       
     2 * Copyright (c) 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 Harvester server's client header
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 #ifndef MCMMDHCLIENT_H
       
    24 #define MCMMDHCLIENT_H
       
    25 
       
    26 //  INCLUDES
       
    27 
       
    28 // FORWARD DECLARATION
       
    29 
       
    30 // CLASS DECLARATION
       
    31 /**
       
    32 *  Metadata Harvester client
       
    33 *
       
    34 *  @lib mcmmdhclient.lib
       
    35 *  @since S60 3.1
       
    36 */
       
    37 class MCmMdhClient
       
    38     {
       
    39     public:
       
    40             
       
    41         /**
       
    42         * Starts harvesting
       
    43         * @since S60 3.1
       
    44         * @return Error code
       
    45         */        
       
    46         virtual TInt Harvest() = 0;
       
    47 		
       
    48 		/**
       
    49         * Cancels request
       
    50         * @since S60 3.1
       
    51         */        
       
    52         virtual void Stop() = 0;
       
    53 
       
    54     /**
       
    55      * Deletes the object
       
    56      * @since S60 3.1
       
    57      */
       
    58 		virtual void Close() = 0;
       
    59 		
       
    60     };
       
    61     
       
    62 #endif      // MCMMDHCLIENT_H
       
    63             
       
    64 // End of File