2015-12-06 23:37:42 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "property_model.hpp"
|
2016-07-07 00:37:05 +08:00
|
|
|
#include "storage/label/label_collection.hpp"
|
2015-12-06 23:37:42 +08:00
|
|
|
#include "edge_list.hpp"
|
|
|
|
|
|
|
|
class VertexModel : public PropertyModel
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
EdgeList in, out;
|
2016-07-02 05:05:03 +08:00
|
|
|
LabelCollection labels;
|
2015-12-06 23:37:42 +08:00
|
|
|
};
|