memgraph/storage/model/vertex.hpp

16 lines
253 B
C++
Raw Normal View History

2015-07-07 22:18:26 +08:00
#ifndef MEMGRAPH_STORAGE_MODEL_VERTEX_HPP
#define MEMGRAPH_STORAGE_MODEL_VERTEX_HPP
#include <vector>
#include "record.hpp"
#include "edge.hpp"
2015-07-31 18:31:08 +08:00
struct Vertex : public Record<Vertex>
2015-07-07 22:18:26 +08:00
{
std::vector<Edge*> in;
2015-07-31 18:31:08 +08:00
std::vector<Edge*> out;
2015-07-07 22:18:26 +08:00
};
#endif