highlighter application  1.1
HCE project utils : highlighter
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
SerializeCacheData.hpp
Go to the documentation of this file.
1 
13 #ifndef SERIALIZE_CACHE_DATA_HPP
14 #define SERIALIZE_CACHE_DATA_HPP
15 
16 #include <msgpack.hpp>
17 
18 #include "ContentsStorageBase.hpp"
19 
21 {
23  SerializeCacheData(std::vector<std::map<unsigned long long, std::vector<WordPos> > > _data, unsigned long long _resCrc):data(_data), resCrc(_resCrc){}
25  std::vector<std::map<unsigned long long, std::vector<WordPos> > > data;
26  unsigned long long resCrc;
28 };
29 
30 #endif