class EE::System::LogReaderInterface¶
The reader interface is useful if you want to keep track of what is write in the log, for example for a console.
#include <log.hpp> class LogReaderInterface { public: // methods virtual void writeLog(const std::string_view& Text) = 0; };