From 7028cbe09c688437910a25623098762bf0fa592d Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Mon, 28 Mar 2016 22:28:34 +1000 Subject: Move Irrlicht to src/others. --- .../doc/html/classirr_1_1_i_logger.html | 417 +++++++++++++++++++++ 1 file changed, 417 insertions(+) create mode 100644 src/others/irrlicht-1.8.1/doc/html/classirr_1_1_i_logger.html (limited to 'src/others/irrlicht-1.8.1/doc/html/classirr_1_1_i_logger.html') diff --git a/src/others/irrlicht-1.8.1/doc/html/classirr_1_1_i_logger.html b/src/others/irrlicht-1.8.1/doc/html/classirr_1_1_i_logger.html new file mode 100644 index 0000000..bdb50a5 --- /dev/null +++ b/src/others/irrlicht-1.8.1/doc/html/classirr_1_1_i_logger.html @@ -0,0 +1,417 @@ + + + + +Irrlicht 3D Engine: irr::ILogger Class Reference + + + + + + + + + + + + + + +
+ + +
+ + + + + + + + + + + + + + + + + +
+
Irrlicht 3D Engine + +
+ +
+ + + + + + +
+
+
+ + + + +
+
+ +
+
+
+ +
+
+ +
+
irr::ILogger Class Reference
+
+
+ +

Interface for logging messages, warnings and errors. + More...

+ +

#include <ILogger.h>

+
+ + Inheritance diagram for irr::ILogger:
+
+
+ + +

List of all members.

+

+Public Member Functions

+ +

Detailed Description

+

Interface for logging messages, warnings and errors.

+ +

Definition at line 38 of file ILogger.h.

+

Constructor & Destructor Documentation

+ +
+
+ + + + + + + +
virtual irr::ILogger::~ILogger () [inline, virtual]
+
+
+ +

Destructor.

+ +

Definition at line 43 of file ILogger.h.

+ +
+
+

Member Function Documentation

+ +
+
+ + + + + + + +
virtual ELOG_LEVEL irr::ILogger::getLogLevel () const [pure virtual]
+
+
+ +

Returns the current set log level.

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
virtual void irr::ILogger::log (const c8text,
ELOG_LEVEL ll = ELL_INFORMATION 
) [pure virtual]
+
+
+ +

Prints out a text into the log.

+
Parameters:
+ + + +
text,:Text to print out.
ll,:Log level of the text. If the text is an error, set it to ELL_ERROR, if it is warning set it to ELL_WARNING, and if it is just an informational text, set it to ELL_INFORMATION. Texts are filtered with these levels. If you want to be a text displayed, independent on what level filter is set, use ELL_NONE.
+
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
virtual void irr::ILogger::log (const c8text,
const c8hint,
ELOG_LEVEL ll = ELL_INFORMATION 
) [pure virtual]
+
+
+ +

Prints out a text into the log.

+
Parameters:
+ + + + +
text,:Text to print out.
hint,:Additional info. This string is added after a " :" to the string.
ll,:Log level of the text. If the text is an error, set it to ELL_ERROR, if it is warning set it to ELL_WARNING, and if it is just an informational text, set it to ELL_INFORMATION. Texts are filtered with these levels. If you want to be a text displayed, independent on what level filter is set, use ELL_NONE.
+
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
virtual void irr::ILogger::log (const c8text,
const wchar_t * hint,
ELOG_LEVEL ll = ELL_INFORMATION 
) [pure virtual]
+
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
virtual void irr::ILogger::log (const wchar_t * text,
const wchar_t * hint,
ELOG_LEVEL ll = ELL_INFORMATION 
) [pure virtual]
+
+
+ +

Prints out a text into the log.

+
Parameters:
+ + + + +
text,:Text to print out.
hint,:Additional info. This string is added after a " :" to the string.
ll,:Log level of the text. If the text is an error, set it to ELL_ERROR, if it is warning set it to ELL_WARNING, and if it is just an informational text, set it to ELL_INFORMATION. Texts are filtered with these levels. If you want to be a text displayed, independent on what level filter is set, use ELL_NONE.
+
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
virtual void irr::ILogger::log (const wchar_t * text,
ELOG_LEVEL ll = ELL_INFORMATION 
) [pure virtual]
+
+
+ +

Prints out a text into the log.

+
Parameters:
+ + + +
text,:Text to print out.
ll,:Log level of the text. If the text is an error, set it to ELL_ERROR, if it is warning set it to ELL_WARNING, and if it is just an informational text, set it to ELL_INFORMATION. Texts are filtered with these levels. If you want to be a text displayed, independent on what level filter is set, use ELL_NONE.
+
+
+ +
+
+ +
+
+ + + + + + + + +
virtual void irr::ILogger::setLogLevel (ELOG_LEVEL ll) [pure virtual]
+
+
+ +

Sets a new log level.

+

With this value, texts which are sent to the logger are filtered out. For example setting this value to ELL_WARNING, only warnings and errors are printed out. Setting it to ELL_INFORMATION, which is the default setting, warnings, errors and informational texts are printed out.

+
Parameters:
+ + +
ll,:new log level filter value.
+
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + + -- cgit v1.1