You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

29 lines
593 B

#ifndef STORM_UTILITY_INITIALIZE_H
#define STORM_UTILITY_INITIALIZE_H
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 /* STORM_UTILITY_INITIALIZE_H */