sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
* Header STRNG.H
|
sl@0
|
16 |
*
|
sl@0
|
17 |
*/
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#ifndef __STRNG_H__
|
sl@0
|
21 |
#define __STRNG_H__
|
sl@0
|
22 |
|
sl@0
|
23 |
#include <string.h>
|
sl@0
|
24 |
#include <stdlib.h>
|
sl@0
|
25 |
|
sl@0
|
26 |
#if defined(__VC32__) && !defined(__MSVCDOTNET__)
|
sl@0
|
27 |
#include <iostream.h>
|
sl@0
|
28 |
#else //!__VC32__ || __MSVCDOTNET__
|
sl@0
|
29 |
#include <iostream>
|
sl@0
|
30 |
using namespace std;
|
sl@0
|
31 |
#endif //!__VC32__ || __MSVCDOTNET__
|
sl@0
|
32 |
|
sl@0
|
33 |
#include "GDR.H"
|
sl@0
|
34 |
|
sl@0
|
35 |
class String
|
sl@0
|
36 |
/**
|
sl@0
|
37 |
NB only byte strings supported, no Unicode yet
|
sl@0
|
38 |
@publishedAll
|
sl@0
|
39 |
WARNING: Class for internal use ONLY. Compatibility is not guaranteed in future releases.
|
sl@0
|
40 |
*/
|
sl@0
|
41 |
{
|
sl@0
|
42 |
public:
|
sl@0
|
43 |
inline String();
|
sl@0
|
44 |
inline String(const char* aText);
|
sl@0
|
45 |
inline String(int aLength, char* aText);
|
sl@0
|
46 |
inline String(const String& aString);
|
sl@0
|
47 |
inline String& operator = (const char* aText);
|
sl@0
|
48 |
inline String& operator = (const String& aString);
|
sl@0
|
49 |
inline String& operator += (const char aChar);
|
sl@0
|
50 |
inline String& operator += (const String& aString);
|
sl@0
|
51 |
inline int operator == (const String& aString) const;
|
sl@0
|
52 |
inline char& operator [] (const int aNum) const;
|
sl@0
|
53 |
inline int Length() const;
|
sl@0
|
54 |
inline const char* Text();
|
sl@0
|
55 |
IMPORT_C virtual void Externalize(ostream& out);
|
sl@0
|
56 |
protected:
|
sl@0
|
57 |
inline void CopyText(char* aDest, const char* aSource, int aLength) const;
|
sl@0
|
58 |
IMPORT_C int CreateText(const int aLength);
|
sl@0
|
59 |
IMPORT_C void DeleteText(char* aText) const;
|
sl@0
|
60 |
public:
|
sl@0
|
61 |
IMPORT_C ~String();
|
sl@0
|
62 |
protected:
|
sl@0
|
63 |
int32 iLength; // length of string
|
sl@0
|
64 |
char* iText; // data
|
sl@0
|
65 |
friend ostream& operator << (ostream& out, const String& aString);
|
sl@0
|
66 |
};
|
sl@0
|
67 |
|
sl@0
|
68 |
#include "STRNG.INL"
|
sl@0
|
69 |
|
sl@0
|
70 |
#endif
|