source: src/Helpers/logger.hpp@ 70672e3

Last change on this file since 70672e3 was 70672e3, checked in by Frederik Heber <heber@…>, 15 years ago

Added config.h to all header files.

  • Property mode set to 100644
File size: 839 bytes
Line 
1/*
2 * logger.hpp
3 *
4 * Created on: Oct 19, 2009
5 * Author: metzler
6 */
7
8#ifndef LOGGER_HPP_
9#define LOGGER_HPP_
10
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16#include <iosfwd>
17
18#include "Singleton.hpp"
19
20using namespace std;
21
22class Verbose;
23
24class logger : public Singleton<logger> {
25 friend class Singleton<logger>;
26public :
27 static ostream *nix;
28 static int verbosity;
29
30 static bool DoOutput();
31 static void setVerbosity(int verbosityLevel);
32 static int getVerbosity();
33
34protected:
35 /** Do not call this constructor directly, use getInstance() instead. */
36 logger();
37 /** Do not call this destructor directly, use purgeInstance() instead. */
38 ~logger();
39};
40
41ostream& operator<<(class logger&l, const Verbose& ost);
42ostream& operator<<(class logger*l, const Verbose& ost);
43
44#endif /* LOGGER_HPP_ */
Note: See TracBrowser for help on using the repository browser.