source: molecuilder/src/errorlogger.hpp@ 01d28a

Last change on this file since 01d28a was 543ce4, checked in by Frederik Heber <heber@…>, 16 years ago

Huge change from ofstream * (const) out --> Log().

  • first shift was done via regular expressions
  • then via error messages from the code
  • note that class atom, class element and class molecule kept in parts their output stream, was they print to file.
  • make check runs fine
  • MISSING: Verbosity is not fixed for everything (i.e. if no endl; is present and next has Verbose(0) ...)

Signed-off-by: Frederik Heber <heber@…>

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