1.1 --- a/epoc32/include/stringpool.h Wed Mar 31 12:27:01 2010 +0100
1.2 +++ b/epoc32/include/stringpool.h Wed Mar 31 12:33:34 2010 +0100
1.3 @@ -1,9 +1,9 @@
1.4 // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 // All rights reserved.
1.6 // This component and the accompanying materials are made available
1.7 -// 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
1.8 +// under the terms of "Eclipse Public License v1.0"
1.9 // which accompanies this distribution, and is available
1.10 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.11 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.12 //
1.13 // Initial Contributors:
1.14 // Nokia Corporation - initial contribution.
1.15 @@ -17,9 +17,9 @@
1.16 #define __STRINGPOOL_H__
1.17
1.18 #include <e32base.h>
1.19 -#include <stringtablesupport.h>
1.20 -#include <stringpoolerr.h>
1.21
1.22 +
1.23 +struct TStringTable;
1.24 class RStringF;
1.25 class RString;
1.26 class RStringToken;
1.27 @@ -37,7 +37,7 @@
1.28 @released
1.29 */
1.30 {
1.31 - ///Implement this function to perform some operation when the string pool is being closed
1.32 + //Implement this function to perform some operation when the string pool is being closed
1.33 public:
1.34 /** Called when the string pool is about to close. */
1.35 virtual void StringPoolClosing()=0;
1.36 @@ -270,14 +270,14 @@
1.37
1.38 struct TStringTable
1.39 {
1.40 - /// The number of elements in the table
1.41 + // The number of elements in the table
1.42 /** The number of elements in the table. */
1.43 TUint iCount;
1.44 - /// A pointer to an array of pointers to the strings
1.45 + // A pointer to an array of pointers to the strings
1.46 /** A pointer to an array of pointers to the strings. */
1.47 const void* const * iTable;
1.48
1.49 - /// ETrue if the table should be considered case-sensitive.
1.50 + // ETrue if the table should be considered case-sensitive.
1.51 /** Flag that is ETrue if the table should be considered case-sensitive, otherwise
1.52 EFalse. */
1.53 TBool iCaseSensitive;
1.54 @@ -287,3 +287,5 @@
1.55 #include <stringpool.inl>
1.56
1.57 #endif // __STRINGPOOL_H__
1.58 +
1.59 +