memgraph/src/storage/model/vertex_model.hpp

13 lines
200 B
C++
Raw Normal View History

2015-12-06 23:37:42 +08:00
#pragma once
#include "property_model.hpp"
// #include "label_list.hpp"
2015-12-06 23:37:42 +08:00
#include "edge_list.hpp"
class VertexModel : public PropertyModel
{
public:
EdgeList in, out;
// LabelList labels;
2015-12-06 23:37:42 +08:00
};