8a89f6601d
Implemented untested UniqueOrderedIndex. Introduced TypeGroupEdge/Vertex into database. Added Index capabilityes to PropertyFamily. Added method for adding index. Added method for removing index.
10 lines
194 B
C++
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() {}
|
|
};
|