remotestoragefw/remotefileengine/inc/rsfwmetadatastore.h
branchRCL_3
changeset 19 88ee4cf65e19
parent 16 87c71b25c937
child 20 1aa8c82cb4cb
equal deleted inserted replaced
16:87c71b25c937 19:88ee4cf65e19
     1 /*
       
     2 * Copyright (c) 2004-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:  Keeps metadata persistent
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_RSFWMETADATASTORE_H
       
    20 #define C_RSFWMETADATASTORE_H
       
    21 
       
    22 // INCLUDES
       
    23 #include "rsfwcontrol.h"
       
    24 #include "rsfwpermanentstore.h"
       
    25 
       
    26 // CLASS DECLARATION
       
    27 class CRsfwMetaDataStore: public CRsfwPermanentStore
       
    28     {
       
    29 
       
    30 public:
       
    31     static CRsfwMetaDataStore* NewL(const TDesC& aPath);
       
    32     static CRsfwMetaDataStore* NewLC(const TDesC& aPath);
       
    33     void GetMountConfigL(TRsfwMountConfig& aMountConfig);
       
    34     void SetMountConfigL(const TRsfwMountConfig& aMountConfig);
       
    35 
       
    36 private:
       
    37     void ConstructL(const TDesC& aPath);
       
    38     };
       
    39 
       
    40 #endif // METADATASTORE_H
       
    41 
       
    42 // End of File