Lightweight 0.1.0
Loading...
Searching...
No Matches
FieldWithStorage Concept Reference

#include <DataMapper.hpp>

Concept definition

template<typename T>
concept FieldWithStorage = requires(T const& field, T& mutableField) {
{ field.Value() } -> std::convertible_to<typename T::ValueType const&>;
{ mutableField.MutableValue() } -> std::convertible_to<typename T::ValueType&>;
{ field.IsModified() } -> std::convertible_to<bool>;
{ mutableField.SetModified(bool {}) } -> std::convertible_to<void>;
}

Detailed Description

Requires that T satisfies to be a field with storage.

Definition at line 33 of file DataMapper.hpp.