blob: 03d82c16bea7899e1a0efc24adf35fe61173ee58 (
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
49
50
51
52
53
54
|
#ifndef DEF_BASICSTRING_CLASS_H
#define DEF_BASICSTRING_CLASS_H
#include <common.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);
void operator= (const BasicString<T> &other) { affect(other); }
bool compare(const BasicString<T> &other) const;
bool compare(const T* string, u32int length) const;
bool operator== (const BasicString<T> &other) const { return compare(other); }
bool operator!= (const BasicString<T> &other) const { return !compare(other); }
BasicString<T>& append(const BasicString<T> &other);
BasicString<T>& append(const T* string, u32int length);
BasicString<T>& append(const T other);
BasicString<T>& operator+= (const BasicString<T> &other) { return append(other); }
BasicString<T>& operator+= (const T other) { return append(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; }
bool contains(const T& chr) const;
Vector< BasicString<T> > split(T sep) const;
BasicString<T> substr(s32int start, s32int size = -1);
};
#include "BasicString.class.cpp"
#endif
|