27 UpdateSource () =
default;
28 virtual ~UpdateSource () =
default;
47 bool doForceUpdate {
false };
55class ScopedForceUpdater
61 value.forceUpdate (
true);
64 ~ScopedForceUpdater () { value.forceUpdate (
false); }
70using PropertyUpdateFn = std::function<void (juce::Identifier)>;
Definition cello_update_source.h:25
void forceUpdate(bool shouldForceUpdate)
If passed true, any call that sets any Value property on this Object will result in a property change...
Definition cello_update_source.h:39
bool shouldForceUpdate() const
Definition cello_update_source.h:44