2015-09-13 17:34:17 +08:00
|
|
|
#ifndef MEMGRAPH_STORAGE_EDGE_HPP
|
|
|
|
#define MEMGRAPH_STORAGE_EDGE_HPP
|
2015-07-07 22:18:26 +08:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
2015-09-13 17:34:17 +08:00
|
|
|
#include "model/record.hpp"
|
2015-07-07 22:18:26 +08:00
|
|
|
|
|
|
|
struct Vertex;
|
|
|
|
|
2015-07-31 18:31:08 +08:00
|
|
|
struct Edge : public Record<Edge>
|
2015-07-07 22:18:26 +08:00
|
|
|
{
|
2015-08-30 07:12:46 +08:00
|
|
|
Vertex* from;
|
2015-07-31 18:31:08 +08:00
|
|
|
Vertex* to;
|
2015-07-07 22:18:26 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|