Moved config to separate compilation unit

This commit is contained in:
2018-01-08 18:02:02 +01:00
parent b1d7157530
commit 9ce2215f7a
4 changed files with 24 additions and 9 deletions
+8
View File
@@ -0,0 +1,8 @@
#include "config.hpp"
namespace config {
H5::PredType dataset_type = H5::PredType::NATIVE_UINT8;
H5T_order_t dataset_byte_order = H5T_ORDER_LE;
hsize_t dataset_increase_step = 1000;
hsize_t initial_dataset_size = 1000;
}