35aa048a6f62a4a6f97b45baa6ae2a2d58ffe56d
[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     /** \brief 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     struct VERBOSE   : public detail::LevelBase { static unsigned const value = 1; };
48     struct NOTICE    : public detail::LevelBase { static unsigned const value = 2; };
49     struct MESSAGE   : public detail::LevelBase { static unsigned const value = 3; };
50     struct IMPORTANT : public detail::LevelBase { static unsigned const value = 4; };
51     struct CRITICAL  : public detail::LevelBase { static unsigned const value = 5; };
52
53     struct DISABLED  : public detail::LevelBase { static unsigned const value = 6; };
54     struct NONE      : public detail::LevelBase { static unsigned const value = 0; };
55
56 }}
57
58 ///////////////////////////////hh.e////////////////////////////////////////
59 //#include "Levels.cci"
60 //#include "Levels.ct"
61 //#include "Levels.cti"
62 #endif
63
64 \f
65 // Local Variables:
66 // mode: c++
67 // fill-column: 100
68 // comment-column: 40
69 // c-file-style: "senf"
70 // indent-tabs-mode: nil
71 // ispell-local-dictionary: "american"
72 // compile-command: "scons -u test"
73 // End: