memgraph/storage/vertex.hpp

15 lines
201 B
C++
Raw Normal View History

2015-07-04 17:39:16 +08:00
#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