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

19 lines
223 B
C++

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