sl@0: /* sl@0: * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: #ifndef __TSTCLIPB_H__ sl@0: #define __TSTCLIPB_H__ sl@0: sl@0: #include sl@0: #include sl@0: sl@0: class RFs; sl@0: class CFileStore; sl@0: class CStreamDictionary; sl@0: sl@0: sl@0: class CClipboard : public CBase sl@0: /** sl@0: Provdes a clipboard class, capable of storing multiple data *types* sl@0: All data *types* stored must be registered prior to closing this clipboard. sl@0: @internalComponent sl@0: */ sl@0: { sl@0: public: sl@0: IMPORT_C static CClipboard* NewForReadingLC(RFs& aFsSession); sl@0: IMPORT_C static CClipboard* NewForWritingLC(RFs& aFsSession); sl@0: IMPORT_C ~CClipboard(); sl@0: // sl@0: // Necessary only when writing sl@0: IMPORT_C void CommitL(); sl@0: // sl@0: inline CFileStore& Store() const; sl@0: inline CStreamDictionary& StreamDictionary() const; sl@0: private: sl@0: CClipboard(RFs& aFsSession); sl@0: void ConstructForWritingL(const TDesC& aFileName); sl@0: void ConstructForReadingL(const TDesC& aFileName); sl@0: void CreateDirectoryL(const TDesC& aFileName); sl@0: private: sl@0: CFileStore* iStore; sl@0: CStreamDictionary* iStreamDictionary; sl@0: RFs& iFsSession; sl@0: }; sl@0: sl@0: inline CFileStore& CClipboard::Store() const sl@0: { return *iStore; } sl@0: sl@0: inline CStreamDictionary& CClipboard::StreamDictionary() const sl@0: { return *iStreamDictionary; } sl@0: sl@0: #endif