memgraph/include/storage/garbage/delete_sensitive.hpp
Kruno Tomola Fabro 8a89f6601d EdgeType indexes added.
Implemented untested UniqueOrderedIndex.

Introduced TypeGroupEdge/Vertex into database.

Added Index capabilityes to PropertyFamily.
Added method for adding index.
Added method for removing index.
2016-08-25 15:29:45 +01:00

10 lines
194 B
C++

#pragma once
// Base class for all classes which need to be safely disposed. Main usage is
// for garbage class operations.
class DeleteSensitive
{
public:
virtual ~DeleteSensitive() {}
};