22#ifndef _HDF5SERIE_OPTIONS_H_
23#define _HDF5SERIE_OPTIONS_H_
30 int fixedStrSize = -1;
31 int compression = File::getDefaultCompression();
32 int chunkSize = File::getDefaultChunkSize();
33 int cacheSize = File::getDefaultCacheSize();
34 Options& _fixedStrSize(
int v) { fixedStrSize = v;
return *
this; }
35 Options& _compression(
int v) { compression = v;
return *
this; }
36 Options& _chunkSize(
int v) { chunkSize = v;
return *
this; }
37 Options& _cacheSize(
int v) { cacheSize = v;
return *
this; }