memgraph/data_model/edge.hpp
2015-06-21 22:20:36 +02:00

17 lines
205 B
C++

#ifndef MEMGRAPH_DATA_MODEL_EDGE_HPP
#define MEMGRAPH_DATA_MODEL_EDGE_HPP
template <class T>
struct Node;
template <class T>
struct Edge
{
Node<T>* from;
Node<T>* to;
T* data;
};
#endif