1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __STRINGDICTIONARYCOLLECTION_H__
17 #define __STRINGDICTIONARYCOLLECTION_H__
28 class MStringDictionary;
29 class RStringDictionaryCollectionImpl;
32 class RStringDictionaryCollection
34 The RStringDictionaryCollection class holds a collection of Dictionaries requested by the user.
41 IMPORT_C void OpenL();
42 IMPORT_C void Close();
44 IMPORT_C RStringDictionaryCollection();
46 IMPORT_C void OpenDictionaryL(const TDesC8& aDictionaryDescription);
48 IMPORT_C RStringPool& StringPool();
50 IMPORT_C MStringDictionary& CurrentDictionaryL() const;
54 RStringDictionaryCollection(const RStringDictionaryCollection& aOriginal);
55 RStringDictionaryCollection& operator=(const RStringDictionaryCollection& aRhs);
61 Hide the implementation details.
63 RStringDictionaryCollectionImpl* iImpl;
68 #endif //__STRINGDICTIONARYCOLLECTION_H__