X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/71e93c2cca7c6f967c3c77c3e26c037ad4f4f555..2a77bf6d539b1750d194de21ed287a958609693a:/configcache.h diff --git a/configcache.h b/configcache.h index 5e48cbf..158eb0a 100644 --- a/configcache.h +++ b/configcache.h @@ -7,12 +7,6 @@ #include #include -#include -#include -#include -#include -#include - #define CACHE_MODE_DISABLED 0 #define CACHE_MODE_READ 1 #define CACHE_MODE_FULL 2 @@ -36,7 +30,7 @@ class configcache{ ~configcache(); configcache(const string& cacheid, const int& nequi, const int& nskip, const string& datadir, char **configmem, const int& configMemSize, const int& cachemode=CACHE_MODE_FULL, ostream *_log=NULL); - void readConfig(bool& readnewconfig, int& nequileft, vector *excludeFileHashes=NULL); + void readConfig(bool *readnewconfig, int *nequileft, vector *excludeFileHashes=NULL); void writeConfig(int actnequi); void addPara(const string& parid, const double& val=0); void setPara(const string& parid, const double& value); @@ -53,6 +47,9 @@ class configcache{ void finishOutFile(); private: + struct iobuffers; + iobuffers *ioBuffers; + ostream* log; infiledesc openFileDesc; int getParIndex(const string& parid); @@ -70,9 +67,6 @@ class configcache{ int readnum; - boost::iostreams::filtering_istreambuf *inBuffer; - boost::iostreams::filtering_ostreambuf *outBuffer; - int inSize; int configSize;