From a3e1d227377188734b82f023f96f8e25dc40f3e6 Mon Sep 17 00:00:00 2001 From: Igor Pavlov <87184205+ip7z@users.noreply.github.com> Date: Mon, 20 Jun 2022 00:00:00 +0000 Subject: 22.00 --- CPP/Common/MyString.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'CPP/Common/MyString.h') 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: void Add_Space_if_NotEmpty(); void Add_OptSpaced(const char *s); void Add_LF(); + void Add_Slash(); void Add_PathSepar() { operator+=(CHAR_PATH_SEPARATOR); } AString &operator+=(const char *s); @@ -386,12 +387,12 @@ public: void Add_UInt32(UInt32 v); void Add_UInt64(UInt64 v); + void AddFrom(const char *s, unsigned len); // no check void SetFrom(const char *s, unsigned len); // no check void SetFrom_CalcLen(const char *s, unsigned len); AString Mid(unsigned startIndex, unsigned count) const { return AString(count, _chars + startIndex); } AString Left(unsigned count) const { return AString(count, *this); } - // void MakeUpper() { MyStringUpper(_chars); } // void MakeLower() { MyStringLower(_chars); } void MakeLower_Ascii() { MyStringLower_Ascii(_chars); } -- cgit v1.2.3-55-g6feb