diff -r 000000000000 -r 094583676ce7 PECengine/StorageManager2/ServerSrc/MPEngStorageFolder.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/PECengine/StorageManager2/ServerSrc/MPEngStorageFolder.h Thu Dec 17 08:41:52 2009 +0200 @@ -0,0 +1,58 @@ +/* +* Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Storage folder abstract interface +* +*/ + + + +#ifndef __MPENGSTORAGEFOLDER_H +#define __MPENGSTORAGEFOLDER_H + +// INCLUDES + +#include +#include + +// FORWARD DECLARATIONS +class CPEngDataEntry; + +// CLASS DECLARATION +/** +* Storage folder abstract interface +* +* @since 3.0 +*/ +class MPEngStorageFolder + { + public: // New functions + + /** + * + * + */ + virtual CPEngDataEntry* DataEntryL( const TDesC& aSId ) = 0; + + + protected: //Destructor + /** + * Virtual inline destructor. + * can not be destroyed using this interface. + */ + virtual ~MPEngStorageFolder() {}; + }; + +#endif // __MPENGSTORAGEFOLDER_H + +// End of File