First public contribution.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
19 #ifndef __TSTCLIPB_H__
20 #define __TSTCLIPB_H__
27 class CStreamDictionary;
30 class CClipboard : public CBase
32 Provdes a clipboard class, capable of storing multiple data *types*
33 All data *types* stored must be registered prior to closing this clipboard.
38 IMPORT_C static CClipboard* NewForReadingLC(RFs& aFsSession);
39 IMPORT_C static CClipboard* NewForWritingLC(RFs& aFsSession);
40 IMPORT_C ~CClipboard();
42 // Necessary only when writing
43 IMPORT_C void CommitL();
45 inline CFileStore& Store() const;
46 inline CStreamDictionary& StreamDictionary() const;
48 CClipboard(RFs& aFsSession);
49 void ConstructForWritingL(const TDesC& aFileName);
50 void ConstructForReadingL(const TDesC& aFileName);
51 void CreateDirectoryL(const TDesC& aFileName);
54 CStreamDictionary* iStreamDictionary;
58 inline CFileStore& CClipboard::Store() const
61 inline CStreamDictionary& CClipboard::StreamDictionary() const
62 { return *iStreamDictionary; }