Assimp v5.2.2 (January 2022)
The Asset-Importer-Lib API documentation.
|
CPP-API: Abstract interface for log stream implementations. More...
#include <LogStream.hpp>
Inherits Intern::AllocateFromAssimpHeap.
Public Member Functions | |
virtual void | write (const char *message)=0 |
Overwrite this for your own output methods. | |
virtual | ~LogStream () |
Virtual destructor | |
Static Public Member Functions | |
static LogStream * | createDefaultStream (aiDefaultLogStream stream, const char *name="AssimpLog.txt", IOSystem *io=nullptr) |
Creates a default log stream. | |
Protected Member Functions | |
LogStream () AI_NO_EXCEPT | |
Default constructor. | |
CPP-API: Abstract interface for log stream implementations.
Several default implementations are provided, see aiDefaultLogStream for more details. Writing your own implementation of LogStream is just necessary if these are not enough for your purpose.
|
inlineprotecteddefault |
Default constructor.
|
inlinevirtualdefault |
Virtual destructor
Overwrite this for your own output methods.
Log messages may consist of multiple lines and you shouldn't expect a consistent formatting. If you want custom formatting (e.g. generate HTML), supply a custom instance of Logger to #DefaultLogger:set(). Usually you can expect that a log message is exactly one line and terminated with a single
character.
message | Message to be written |