Added dataset_name to config

This commit is contained in:
2018-01-10 14:53:03 +01:00
parent 2bf4494cea
commit d8f7755490
2 changed files with 5 additions and 0 deletions
+2
View File
@@ -10,4 +10,6 @@ namespace config {
int n_io_threads = 1;
size_t n_slots = 100;
string dataset_name = "data";
}
+3
View File
@@ -1,4 +1,5 @@
#include <H5Cpp.h>
#include <string>
#ifndef CONFIG_H
#define CONFIG_H
@@ -13,6 +14,8 @@ namespace config
extern uint16_t rest_port;
extern int n_io_threads;
extern size_t n_slots;
extern string dataset_name;
}
#endif