22 lines
354 B
C++
Raw Normal View History

2022-05-21 19:58:09 +02:00
#include "stdafx.h"
#include "TextWriter.h"
namespace IO
{
void TextWriter::WriteLine()
{
Write(&TextWriter::NewLine[0], 0, 2);
}
void TextWriter::WriteLine(const char Value)
{
Write(Value);
WriteLine();
}
void TextWriter::WriteLine(const char* Buffer, uint32_t Index, uint32_t Count)
{
Write(Buffer, Index, Count);
WriteLine();
}
}