memgraph/include/storage/model/properties/property.hpp
Kruno Tomola Fabro 5d235b51f3 tmp commit
tmp commit

tmp commit v2

Finished reimplementation of propertys.
They now can be placed in a holder with different source of type information.

Tmp commit
2016-09-05 10:02:48 +01:00

22 lines
438 B
C++

#pragma once
#include <cassert>
#include <memory>
#include <ostream>
#include <string>
#include <vector>
#include "storage/model/properties/flags.hpp"
#include "storage/model/properties/property_holder.hpp"
class Null;
// Property Class designated for creation outside the database.
class Property : public PropertyHolder<Type>
{
public:
using PropertyHolder<Type>::PropertyHolder;
};
using properties_t = std::vector<Property>;