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

17 lines
214 B
C++

#ifndef MEMGRAPH_STORAGE_EDGE_HPP
#define MEMGRAPH_STORAGE_EDGE_HPP
#include <vector>
#include "model/record.hpp"
struct Vertex;
struct Edge : public Record<Edge>
{
Vertex* from;
Vertex* to;
};
#endif