memgraph/data_model/node.hpp

17 lines
233 B
C++
Raw Normal View History

2015-06-22 04:20:36 +08:00
#ifndef MEMGRAPH_DATA_MODEL_NODE_HPP
#define MEMGRAPH_DATA_MODEL_NODE_HPP
#include <vector>
#include "edge.hpp"
template <class T>
struct Node
{
std::vector<Edge<T>*> in;
std::vector<Edge<T>*> out;
T* data;
};
#endif