.. index:: pair: class; EE::System::LogReaderInterface .. _doxid-class_e_e_1_1_system_1_1_log_reader_interface: class EE::System::LogReaderInterface ==================================== .. toctree:: :hidden: The reader interface is useful if you want to keep track of what is write in the log, for example for a console. .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include class LogReaderInterface { public: // methods virtual void :target:`writeLog`(const std::string_view& Text) = 0; };