41 lines
752 B
41 lines
752 B
#ifndef INITIALIZE_H
|
|
#define INITIALIZE_H
|
|
|
|
|
|
|
|
|
|
#include "log4cplus/logger.h"
|
|
#include "log4cplus/loggingmacros.h"
|
|
#include "log4cplus/consoleappender.h"
|
|
#include "log4cplus/fileappender.h"
|
|
log4cplus::Logger logger;
|
|
log4cplus::Logger printer;
|
|
|
|
|
|
namespace storm {
|
|
namespace utility {
|
|
/*!
|
|
* Initializes the logging framework and sets up logging to console.
|
|
*/
|
|
void initializeLogger();
|
|
|
|
/*!
|
|
* Performs some necessary initializations.
|
|
*/
|
|
void setUp();
|
|
|
|
/*!
|
|
* Performs some necessary clean-up.
|
|
*/
|
|
void cleanUp();
|
|
|
|
/*!
|
|
* Sets up the logging to file.
|
|
*/
|
|
void initializeFileLogging();
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* INITIALIZE_H */
|
|
|