source: src/Helpers/Info.hpp@ 4fb16c

Last change on this file since 4fb16c 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: 656 bytes
Line 
1/*
2 * Info.hpp
3 *
4 * Created on: Nov 25, 2009
5 * Author: heber
6 */
7
8#ifndef INFO_HPP_
9#define INFO_HPP_
10
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16/*********************************************** includes ***********************************/
17
18/****************************************** forward declarations *****************************/
19
20/********************************************** definitions *********************************/
21
22class Info {
23public :
24 static int verbosity;
25 const char *FunctionName;
26
27 Info(const char *msg);
28 ~Info();
29 static void setVerbosity(int verbosityLevel);
30
31};
32
33#endif /* INFO_HPP_ */
Note: See TracBrowser for help on using the repository browser.