Logo
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
block_metadata.hh
Go to the documentation of this file.
1 #ifndef __MODEL_BLOCK_METADATA_HH__
2 #define __MODEL_BLOCK_METADATA_HH__
3 
4 #include <string>
5 #include <stdint.h>
6 #include <vector>
7 
8 namespace velox {
9  namespace model {
11  public:
12  std::string name;
13  uint64_t size;
14  std::string host;
15  int index;
16  std::string file_name;
17  std::vector<block_metadata> chunks;
18  };
19  }
20 }
21 
22 #endif
uint64_t size
Definition: block_metadata.hh:13
std::string name
Definition: block_metadata.hh:12
int index
Definition: block_metadata.hh:15
std::vector< block_metadata > chunks
Definition: block_metadata.hh:17
Definition: block_metadata.hh:10
std::string file_name
Definition: block_metadata.hh:16
std::string host
Definition: block_metadata.hh:14