added to TextStream:

TextStreamBase & operator<<(unsigned char);
  TextStreamBase & operator<<(bool);
  TextStreamBase & operator<<(short);
  TextStreamBase & operator<<(unsigned short);
  TextStreamBase & operator<<(float);
  TextStreamBase & operator<<(long double);
This commit is contained in:
2021-06-15 19:54:50 +02:00
parent 4d70ae9e87
commit 8b0ed5e750
7 changed files with 97 additions and 41 deletions

View File

@@ -35,6 +35,7 @@
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <fstream>
#include "utf8.h"
#include "utf8_private.h"