first commit

This commit is contained in:
2024-12-06 04:58:55 -06:00
commit 856373b396
61 changed files with 5920 additions and 0 deletions

View File

@ -0,0 +1,16 @@
#pragma once
#include "../Common.hpp"
namespace Tesses::Framework::TextStreams
{
class TextWriter {
public:
TextWriter();
std::string newline;
virtual void WriteData(const char* text, size_t len)=0;
void Write(std::string txt);
void WriteLine(std::string txt);
void WriteLine();
virtual ~TextWriter();
};
}