PIString::fromAscii() new overload

This commit is contained in:
2020-10-07 23:29:18 +03:00
parent cebe6f452f
commit 0004d2696f
3 changed files with 11 additions and 5 deletions

View File

@@ -722,6 +722,9 @@ public:
//! \brief Return string constructed from ASCII
static PIString fromAscii(const char * s);
//! \brief Return string constructed from "len" chars ASCII
static PIString fromAscii(const char * s, int len);
//! \brief Return string constructed from "c" codepage
static PIString fromCodepage(const char * s, const char * c);