blob: ba4ec32701ff83b82f68811d528e771a12763e72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <string>
/** Boolean variable controlling whether tuning is enabled
* during this run.
*/
extern bool tuningEnabled;
/** String variable with the folder for writing logs if logging is enabled.
*/
extern std::string loggingPath;
/** Boolean variable whether loggingPath is non-empty. */
extern bool loggingEnabled;
|