remotestoragefw/rsfwnotifierplugins/inc/rsfwsavetodlgrequest.h
changeset 13 6b4fc789785b
parent 2 c32dc0be5eb4
equal deleted inserted replaced
2:c32dc0be5eb4 13:6b4fc789785b
     1 /*
       
     2 * Copyright (c) 2006 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 selection dialog request to the notifier plugin
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef T_RSFWSAVETODLGREQUEST_H
       
    20 #define T_RSFWSAVETODLGREQUEST_H
       
    21 
       
    22 #include "e32cmn.h"
       
    23 
       
    24 #include "rsfwnotpluginrequest.h"
       
    25 
       
    26 
       
    27 /**
       
    28 * Class TRsfwSaveToDlgRequest
       
    29 */
       
    30 class TRsfwSaveToDlgRequest : public TRsfwNotPluginRequest
       
    31     {
       
    32 	public: // New functions
       
    33 
       
    34      // File name
       
    35     TBuf<KMaxFileName>  iFileName;  
       
    36     
       
    37     // Drive letter
       
    38     TBuf<KRsfwMaxDriveletterLength>  iCacheDrive;  
       
    39     
       
    40     // File size as a string (in bytes)
       
    41     TBuf<KRsfwMaxFileSizeString>  iFileSize;  
       
    42     
       
    43     };
       
    44 
       
    45 // Package buffer to hold update parameter information
       
    46 typedef TPckgBuf<TRsfwSaveToDlgRequest> TRsfwSaveToParamsPckg;
       
    47 
       
    48 #endif