Fix String const operators.

Added const to various operators.
This commit is contained in:
Timothy Werquin
2018-05-15 22:23:03 +02:00
parent d8becfbe90
commit 1803ca43fa
2 changed files with 16 additions and 16 deletions

View File

@@ -49,15 +49,15 @@ public:
wchar_t operator[](const int idx) const;
void operator=(const String &s);
bool operator==(const String &s);
bool operator!=(const String &s);
String operator+(const String &s);
bool operator==(const String &s) const;
bool operator!=(const String &s) const;
String operator+(const String &s) const;
void operator+=(const String &s);
void operator+=(const wchar_t c);
bool operator<(const String &s);
bool operator<=(const String &s);
bool operator>(const String &s);
bool operator>=(const String &s);
void operator+=(const wchar_t c) const;
bool operator<(const String &s) const;
bool operator<=(const String &s) const;
bool operator>(const String &s) const;
bool operator>=(const String &s) const;
operator NodePath() const;