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: * Header STRNG.H sl@0: * sl@0: */ sl@0: sl@0: sl@0: #ifndef __STRNG_H__ sl@0: #define __STRNG_H__ sl@0: sl@0: #include sl@0: #include sl@0: sl@0: #if defined(__VC32__) && !defined(__MSVCDOTNET__) sl@0: #include sl@0: #else //!__VC32__ || __MSVCDOTNET__ sl@0: #include sl@0: using namespace std; sl@0: #endif //!__VC32__ || __MSVCDOTNET__ sl@0: sl@0: #include "GDR.H" sl@0: sl@0: class String sl@0: /** sl@0: NB only byte strings supported, no Unicode yet sl@0: @publishedAll sl@0: WARNING: Class for internal use ONLY. Compatibility is not guaranteed in future releases. sl@0: */ sl@0: { sl@0: public: sl@0: inline String(); sl@0: inline String(const char* aText); sl@0: inline String(int aLength, char* aText); sl@0: inline String(const String& aString); sl@0: inline String& operator = (const char* aText); sl@0: inline String& operator = (const String& aString); sl@0: inline String& operator += (const char aChar); sl@0: inline String& operator += (const String& aString); sl@0: inline int operator == (const String& aString) const; sl@0: inline char& operator [] (const int aNum) const; sl@0: inline int Length() const; sl@0: inline const char* Text(); sl@0: IMPORT_C virtual void Externalize(ostream& out); sl@0: protected: sl@0: inline void CopyText(char* aDest, const char* aSource, int aLength) const; sl@0: IMPORT_C int CreateText(const int aLength); sl@0: IMPORT_C void DeleteText(char* aText) const; sl@0: public: sl@0: IMPORT_C ~String(); sl@0: protected: sl@0: int32 iLength; // length of string sl@0: char* iText; // data sl@0: friend ostream& operator << (ostream& out, const String& aString); sl@0: }; sl@0: sl@0: #include "STRNG.INL" sl@0: sl@0: #endif