memgraph/include/storage/model/properties/property.hpp

22 lines
438 B
C++
Raw Normal View History

#pragma once
#include <cassert>
#include <memory>
2016-02-21 00:53:09 +08:00
#include <ostream>
#include <string>
#include <vector>
#include "storage/model/properties/flags.hpp"
#include "storage/model/properties/property_holder.hpp"
2015-08-31 03:23:48 +08:00
class Null;
// Property Class designated for creation outside the database.
class Property : public PropertyHolder<Type>
{
public:
using PropertyHolder<Type>::PropertyHolder;
2015-10-14 02:17:45 +08:00
};
using properties_t = std::vector<Property>;