memgraph/storage/vertex.hpp
2015-09-13 11:34:17 +02:00

16 lines
247 B
C++

#ifndef MEMGRAPH_STORAGE_VERTEX_HPP
#define MEMGRAPH_STORAGE_VERTEX_HPP
#include <vector>
#include "model/record.hpp"
#include "edge.hpp"
struct Vertex : public Record<Vertex>
{
std::vector<Edge*> in;
std::vector<Edge*> out;
};
#endif