blob: a4d56c7829087f6cdb49caaf7c5a4ce73bcadaa2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#ifndef DEF_BASICSTRING_CLASS_H
#define DEF_BASICSTRING_CLASS_H
#include <Core/common.wtf.h>
template <typename T> class Vector;
template <typename T>
class BasicString {
protected:
T *m_string;
u32int m_length;
public:
BasicString();
BasicString(const T* string, u32int length);
BasicString(const BasicString<T> &other);
BasicString(const T, u32int count = 1);
virtual ~BasicString();
void affect(const BasicString<T> &other);
void affect(const T* string, u32int length);
void affect(const T value, u32int count = 1);
bool compare(const BasicString<T> &other) const;
bool compare(const T* string, u32int length) const;
BasicString<T>& append(const BasicString<T> &other);
BasicString<T>& append(const T* string, u32int length);
BasicString<T>& append(const T other);
BasicString<T> concat(const BasicString<T> &other) const;
BasicString<T> concat(const T* string, u32int length) const;
BasicString<T> concat(const T other) const;
T& operator[] (int index) const { return m_string[index]; }
u32int size() const { return m_length; }
void clear();
bool empty() const { return m_length == 0; }
Vector< BasicString<T> > split(T sep) const;
BasicString<T> substr(s32int start, u32int size);
};
#include "BasicString.class.cpp"
#endif
|