All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
CacheStoreOperation.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 #include <string>
7 
8 namespace Eegeo
9 {
10  namespace Web
11  {
12  namespace Cache
13  {
14  namespace WebRequestCacheTasks
15  {
17  {
18  std::string url;
19 
20  Byte* headerBuffer;
21  size_t headerSize;
22 
23  Byte* bodyBuffer;
24  size_t bodySize;
25 
27  : headerBuffer(NULL)
28  , headerSize(0)
29  , bodyBuffer(NULL)
30  , bodySize(0)
31  {}
32  };
33  }
34  }
35  }
36 }