diff options
Diffstat (limited to '')
-rw-r--r-- | CPP/Common/MyString.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CPP/Common/MyString.h b/CPP/Common/MyString.h index aa3c301..c777c8c 100644 --- a/CPP/Common/MyString.h +++ b/CPP/Common/MyString.h | |||
@@ -378,6 +378,7 @@ public: | |||
378 | void Add_Space_if_NotEmpty(); | 378 | void Add_Space_if_NotEmpty(); |
379 | void Add_OptSpaced(const char *s); | 379 | void Add_OptSpaced(const char *s); |
380 | void Add_LF(); | 380 | void Add_LF(); |
381 | void Add_Slash(); | ||
381 | void Add_PathSepar() { operator+=(CHAR_PATH_SEPARATOR); } | 382 | void Add_PathSepar() { operator+=(CHAR_PATH_SEPARATOR); } |
382 | 383 | ||
383 | AString &operator+=(const char *s); | 384 | AString &operator+=(const char *s); |
@@ -386,12 +387,12 @@ public: | |||
386 | void Add_UInt32(UInt32 v); | 387 | void Add_UInt32(UInt32 v); |
387 | void Add_UInt64(UInt64 v); | 388 | void Add_UInt64(UInt64 v); |
388 | 389 | ||
390 | void AddFrom(const char *s, unsigned len); // no check | ||
389 | void SetFrom(const char *s, unsigned len); // no check | 391 | void SetFrom(const char *s, unsigned len); // no check |
390 | void SetFrom_CalcLen(const char *s, unsigned len); | 392 | void SetFrom_CalcLen(const char *s, unsigned len); |
391 | 393 | ||
392 | AString Mid(unsigned startIndex, unsigned count) const { return AString(count, _chars + startIndex); } | 394 | AString Mid(unsigned startIndex, unsigned count) const { return AString(count, _chars + startIndex); } |
393 | AString Left(unsigned count) const { return AString(count, *this); } | 395 | AString Left(unsigned count) const { return AString(count, *this); } |
394 | |||
395 | // void MakeUpper() { MyStringUpper(_chars); } | 396 | // void MakeUpper() { MyStringUpper(_chars); } |
396 | // void MakeLower() { MyStringLower(_chars); } | 397 | // void MakeLower() { MyStringLower(_chars); } |
397 | void MakeLower_Ascii() { MyStringLower_Ascii(_chars); } | 398 | void MakeLower_Ascii() { MyStringLower_Ascii(_chars); } |