2021-12-14 14:39:20 +01:00
|
|
|
#ifndef TT_H
|
|
|
|
#define TT_H
|
2021-12-16 16:00:40 +01:00
|
|
|
|
2021-12-14 14:39:20 +01:00
|
|
|
#include <string>
|
2021-12-17 12:05:13 +01:00
|
|
|
|
2022-04-05 15:04:22 +02:00
|
|
|
#define TT_VERSION 1.2.0_dev
|
2022-04-05 11:19:59 +02:00
|
|
|
#define TT_IO_VERSION 120
|
2021-12-17 17:00:22 +01:00
|
|
|
|
2021-12-17 12:05:13 +01:00
|
|
|
// global variables:
|
2021-12-14 14:39:20 +01:00
|
|
|
extern std::string user_name;
|
2021-12-16 16:00:40 +01:00
|
|
|
extern std::string tracking_dir;
|
|
|
|
extern std::string config_file;
|
|
|
|
|
2021-12-14 14:39:20 +01:00
|
|
|
#endif
|