upnpavcontroller/upnpavcontrollerclient/inc/upnpfileuploadsession.h
changeset 0 7f85d04be362
equal deleted inserted replaced
-1:000000000000 0:7f85d04be362
       
     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:      File tranfer session
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 #ifndef M_UPNPFILEUPLOADSESSION_H
       
    24 #define M_UPNPFILEUPLOADSESSION_H
       
    25 
       
    26 // EXTERNAL INCLUDES
       
    27 #include <e32std.h>
       
    28 
       
    29 // INTERNAL INCLUDES
       
    30 #include "upnpfiletransfersession.h"
       
    31 
       
    32 // CLASS DECLARATION
       
    33 /**
       
    34  *  AV Controller file upload session interface.
       
    35  *
       
    36  *  @since S60 v3.2
       
    37  */
       
    38 class MUPnPFileUploadSession : public MUPnPFileTransferSession
       
    39     {
       
    40 
       
    41 public:
       
    42 
       
    43     /**
       
    44      * Start upload. Uploads the given file to the remote server
       
    45      *
       
    46      * @param aFilePath filepath pointing to a local file
       
    47      * @param aKey identifies the upload operation
       
    48      */        
       
    49     virtual void StartUploadL( const TDesC& aFilePath, TInt aKey ) = 0;
       
    50 
       
    51 protected:
       
    52 
       
    53     /**
       
    54      * Protected destructor
       
    55      */        
       
    56     virtual ~MUPnPFileUploadSession() {};
       
    57     
       
    58     };
       
    59 
       
    60 #endif // M_UPNPFILEUPLOADSESSION_H
       
    61 
       
    62 // End of file