memgraph/storage/model/vertex.hpp
2015-08-30 01:12:46 +02:00

16 lines
253 B
C++

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