memgraph/include/storage/model/properties/bool.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

38 lines
700 B
C++

#pragma once
#include "storage/model/properties/flags.hpp"
class Bool
{
public:
const static Type type;
Bool(bool d) : data(d) {}
bool &value() { return data; }
bool const &value() const { return data; }
std::ostream &print(std::ostream &stream) const
{
return operator<<(stream, *this);
}
friend std::ostream &operator<<(std::ostream &stream, const Bool &prop)
{
return stream << prop.data;
}
bool operator==(const Bool &other) const
{
return other.value() == value();
}
bool operator==(bool v) const { return value() == v; }
explicit operator bool() const { return value(); }
private:
bool data;
};