Utils/Logger: Reorganize source code
[senf.git] / Utils / Logger / Levels.hh
1 // $Id$
2 //
3 // Copyright (C) 2007 
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Stefan Bund <g0dil@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief Levels public header */
25
26 #ifndef HH_Levels_
27 #define HH_Levels_ 1
28
29 // Custom includes
30
31 //#include "Levels.mpp"
32 #include "Levels.ih"
33 ///////////////////////////////hh.p////////////////////////////////////////
34
35 namespace senf {
36 namespace log {
37
38     /** \defgroup loglevels Log levels
39         
40         These are the valid log levels with some additional special values:
41
42         \c DISABLED is a special value used as level limit to disable all messages.
43
44         \c NONE is used to in some special places to inherit the default log level.
45      */
46
47     ///\ingroup loglevels
48     ///\{
49     
50     /** \brief Log level VERBOSE
51         \see loglevels */
52     struct VERBOSE   : public detail::LevelBase { static unsigned const value = 1; };
53
54     /** \brief Log level NOTICE
55         \see loglevels */
56     struct NOTICE    : public detail::LevelBase { static unsigned const value = 2; };
57
58     /** \brief Log level MESSAGE
59         \see loglevels */
60     struct MESSAGE   : public detail::LevelBase { static unsigned const value = 3; };
61
62     /** \brief Log level IMPORTANT
63         \see loglevels */
64     struct IMPORTANT : public detail::LevelBase { static unsigned const value = 4; };
65
66     /** \brief Log level CRITICAL
67         \see loglevels */
68     struct CRITICAL  : public detail::LevelBase { static unsigned const value = 5; };
69
70     /** \brief Disable logging
71         \see loglevels */
72     struct DISABLED  : public detail::LevelBase { static unsigned const value = 6; };
73
74     /** \brief Inherit log level
75         \see loglevels */
76     struct NONE      : public detail::LevelBase { static unsigned const value = 0; };
77
78     ///\}
79
80 }}
81
82 ///////////////////////////////hh.e////////////////////////////////////////
83 //#include "Levels.cci"
84 //#include "Levels.ct"
85 //#include "Levels.cti"
86 #endif
87
88 \f
89 // Local Variables:
90 // mode: c++
91 // fill-column: 100
92 // comment-column: 40
93 // c-file-style: "senf"
94 // indent-tabs-mode: nil
95 // ispell-local-dictionary: "american"
96 // compile-command: "scons -u test"
97 // End: