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

15 lines
201 B
C++

#ifndef MEMGRAPH_STORAGE_VERTEX_HPP
#define MEMGRAPH_STORAGE_VERTEX_HPP
#include "record.hpp"
#include "edge.hpp"
struct Vertex : Record
{
std::list<Edge*> out;
std::string name;
};
#endif