1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
// SPDX-License-Identifier: LGPL-3.0-or-later
// Author: Kristian Lytje
#pragma once
#include <functional>
namespace ausaxs::utility {
namespace detail {
template<typename T> concept observable_type = requires(T t, const T& value) {
{ t.attach_observer(value) } -> std::same_as<void>;
{ t.detach_observer(value) } -> std::same_as<void>;
{ t.notify(value) } -> std::same_as<void>;
};
}
template<typename T>
struct Observer {
Observer() = default;
~Observer() {
on_delete();
}
std::function<void(const T&)> on_notify;
std::function<void()> on_delete;
void notify(const T& value) {
on_notify(value);
}
};
}
|