|
Last change
on this file since 8931ef was a80f419, checked in by Frederik Heber <heber@…>, 15 years ago |
|
First version.
Everything was extracted from project MoleCuilder and adapted such that it
runs on its own (i.e. new configure.ac, Makefile.am structure, stuff for
libtool versioning, ...)
|
-
Property mode
set to
100644
|
|
File size:
609 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 | using namespace std;
|
|---|
| 12 |
|
|---|
| 13 | /*********************************************** includes ***********************************/
|
|---|
| 14 |
|
|---|
| 15 | /****************************************** forward declarations *****************************/
|
|---|
| 16 |
|
|---|
| 17 | /********************************************** definitions *********************************/
|
|---|
| 18 |
|
|---|
| 19 | class Info {
|
|---|
| 20 | public :
|
|---|
| 21 | static int verbosity;
|
|---|
| 22 | const char *FunctionName;
|
|---|
| 23 |
|
|---|
| 24 | Info(const char *msg);
|
|---|
| 25 | ~Info();
|
|---|
| 26 | static void setVerbosity(int verbosityLevel);
|
|---|
| 27 |
|
|---|
| 28 | };
|
|---|
| 29 |
|
|---|
| 30 | #endif /* INFO_HPP_ */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.