|
JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins
« « « Anklang Documentation |
Helper class providing an RAII-based mechanism for temporarily setting and then re-setting a value. More...
#include "juce_ScopedValueSetter.h"
Public Member Functions | |
| ScopedValueSetter (ValueType &valueToSet, ValueType newValue) | |
| Creates a ScopedValueSetter that will immediately change the specified value to the given new value, and will then reset it to its original value when this object is deleted. | |
| ScopedValueSetter (ValueType &valueToSet, ValueType newValue, ValueType valueWhenDeleted) | |
| Creates a ScopedValueSetter that will immediately change the specified value to the given new value, and will then reset it to be valueWhenDeleted when this object is deleted. | |
Helper class providing an RAII-based mechanism for temporarily setting and then re-setting a value.
E.g.
@tags{Core}
Definition at line 54 of file juce_ScopedValueSetter.h.
| juce::ScopedValueSetter< ValueType >::ScopedValueSetter | ( | ValueType & | valueToSet, |
| ValueType | newValue | ||
| ) |
Creates a ScopedValueSetter that will immediately change the specified value to the given new value, and will then reset it to its original value when this object is deleted.
Definition at line 60 of file juce_ScopedValueSetter.h.
| juce::ScopedValueSetter< ValueType >::ScopedValueSetter | ( | ValueType & | valueToSet, |
| ValueType | newValue, | ||
| ValueType | valueWhenDeleted | ||
| ) |
Creates a ScopedValueSetter that will immediately change the specified value to the given new value, and will then reset it to be valueWhenDeleted when this object is deleted.
Definition at line 71 of file juce_ScopedValueSetter.h.
| juce::ScopedValueSetter< ValueType >::~ScopedValueSetter | ( | ) |
Definition at line 80 of file juce_ScopedValueSetter.h.