8a89f6601d
Implemented untested UniqueOrderedIndex. Introduced TypeGroupEdge/Vertex into database. Added Index capabilityes to PropertyFamily. Added method for adding index. Added method for removing index.
15 lines
315 B
C++
15 lines
315 B
C++
#pragma once
|
|
|
|
#include "storage/label/label_collection.hpp"
|
|
#include "storage/model/edge_list.hpp"
|
|
#include "storage/model/edge_map.hpp"
|
|
#include "storage/model/property_model.hpp"
|
|
|
|
class VertexModel : public PropertyModel<TypeGroupVertex>
|
|
{
|
|
public:
|
|
EdgeList out;
|
|
EdgeMap in;
|
|
LabelCollection labels;
|
|
};
|