PECengine/StorageManager2/ServerSrc/MPEngStorageFolder.h
changeset 0 094583676ce7
equal deleted inserted replaced
-1:000000000000 0:094583676ce7
       
     1 /*
       
     2 * Copyright (c) 2002 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:  Storage folder abstract interface
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef __MPENGSTORAGEFOLDER_H
       
    21 #define __MPENGSTORAGEFOLDER_H
       
    22 
       
    23 //  INCLUDES
       
    24 
       
    25 #include <e32def.h>
       
    26 #include <bamdesca.h>
       
    27 
       
    28 // FORWARD DECLARATIONS
       
    29 class CPEngDataEntry;
       
    30 
       
    31 // CLASS DECLARATION
       
    32 /**
       
    33 *  Storage folder abstract interface
       
    34 *
       
    35 *  @since 3.0
       
    36 */
       
    37 class MPEngStorageFolder
       
    38     {
       
    39     public: // New functions
       
    40 
       
    41         /**
       
    42          *
       
    43          *
       
    44          */
       
    45         virtual CPEngDataEntry* DataEntryL( const TDesC& aSId  ) = 0;
       
    46 
       
    47 
       
    48     protected:  //Destructor
       
    49         /**
       
    50          * Virtual inline destructor.
       
    51          * can not be destroyed using this interface.
       
    52          */
       
    53         virtual ~MPEngStorageFolder() {};
       
    54     };
       
    55 
       
    56 #endif      // __MPENGSTORAGEFOLDER_H
       
    57 
       
    58 // End of File