2015-11-22 02:16:19 +08:00
|
|
|
#pragma once
|
2015-09-13 17:34:17 +08:00
|
|
|
|
2015-12-13 00:57:07 +08:00
|
|
|
#include "storage/edges.hpp"
|
2016-07-07 00:37:05 +08:00
|
|
|
#include "storage/edge_type/edge_type_store.hpp"
|
|
|
|
#include "storage/label/label_store.hpp"
|
|
|
|
#include "storage/vertices.hpp"
|
2015-09-13 17:34:17 +08:00
|
|
|
|
|
|
|
class Graph
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Graph() {}
|
|
|
|
|
2016-07-02 05:05:03 +08:00
|
|
|
Vertices vertices;
|
2016-08-10 16:39:02 +08:00
|
|
|
Edges edges;
|
2016-07-07 00:37:05 +08:00
|
|
|
|
2016-07-02 05:05:03 +08:00
|
|
|
LabelStore label_store;
|
2016-07-07 00:37:05 +08:00
|
|
|
EdgeTypeStore edge_type_store;
|
2015-09-13 17:34:17 +08:00
|
|
|
};
|