memgraph/storage/model/edge.hpp

19 lines
223 B
C++
Raw Normal View History

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