memgraph/storage/edge.hpp
2015-07-04 11:39:16 +02:00

17 lines
207 B
C++

#ifndef MEMGRAPH_DATA_MODEL_EDGE_HPP
#define MEMGRAPH_DATA_MODEL_EDGE_HPP
#include "json/all.hpp"
#include "record.hpp"
struct Node;
struct Edge : Record
{
Node* to;
std::string data;
};
#endif