Irrlicht 3D Engine
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
ILogger.h
Go to the documentation of this file.
1
// Copyright (C) 2002-2012 Nikolaus Gebhardt
2
// This file is part of the "Irrlicht Engine".
3
// For conditions of distribution and use, see copyright notice in irrlicht.h
4
5
#ifndef __I_LOGGER_H_INCLUDED__
6
#define __I_LOGGER_H_INCLUDED__
7
8
#include "
IReferenceCounted.h
"
9
10
namespace
irr
11
{
12
17
enum
ELOG_LEVEL
18
{
20
ELL_DEBUG
,
21
23
ELL_INFORMATION
,
24
26
ELL_WARNING
,
27
29
ELL_ERROR
,
30
33
ELL_NONE
34
};
35
36
38
class
ILogger
:
public
virtual
IReferenceCounted
39
{
40
public
:
41
43
virtual
~ILogger
() {}
44
46
virtual
ELOG_LEVEL
getLogLevel
()
const
= 0;
47
49
55
virtual
void
setLogLevel
(
ELOG_LEVEL
ll) = 0;
56
58
64
virtual
void
log
(
const
c8
* text,
ELOG_LEVEL
ll=
ELL_INFORMATION
) = 0;
65
67
75
virtual
void
log
(
const
c8
* text,
const
c8
* hint,
ELOG_LEVEL
ll=
ELL_INFORMATION
) = 0;
76
virtual
void
log
(
const
c8
* text,
const
wchar_t
* hint,
ELOG_LEVEL
ll=
ELL_INFORMATION
) = 0;
77
79
87
virtual
void
log
(
const
wchar_t
* text,
const
wchar_t
* hint,
ELOG_LEVEL
ll=
ELL_INFORMATION
) = 0;
88
90
96
virtual
void
log
(
const
wchar_t
* text,
ELOG_LEVEL
ll=
ELL_INFORMATION
) = 0;
97
};
98
99
}
// end namespace
100
101
#endif
102
Irrlicht Engine
Documentation © 2003-2012 by Nikolaus Gebhardt. Generated on Mon Jun 6 2022 20:53:05 for Irrlicht 3D Engine by
Doxygen
1.8.1.2