This commit is contained in:
2020-10-22 18:03:22 +03:00
parent 91c1487a7e
commit c79f39ad2a
5 changed files with 118 additions and 51 deletions

View File

@@ -1,5 +1,5 @@
/*! \file pistring.h
* \brief String
/*! \file pistring_std.h
* \brief STD for PIString
*
* This file declare std operators and string conversions
*/
@@ -23,11 +23,12 @@
*/
#ifndef PISTRING_STD_H
#define PISTRING_STD_H
#include <string>
#ifdef QNX
typedef std::basic_string<wchar_t> wstring;
#endif
#include "pistringlist.h"
@@ -97,4 +98,5 @@ inline std::ostream & operator <<(std::ostream & s, const PIStringList & v) {
return s;
}
#endif // PISTRING_STD_H