Browse Source

Added to the docs for the Value class

tags/2021-05-28
jules 10 years ago
parent
commit
fbc81a757e
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      modules/juce_data_structures/values/juce_Value.h

+ 4
- 0
modules/juce_data_structures/values/juce_Value.h View File

@@ -40,6 +40,10 @@
When you create a Value with its default constructor, it acts as a wrapper around a When you create a Value with its default constructor, it acts as a wrapper around a
simple var object, but by creating a Value that refers to a custom subclass of ValueSource, simple var object, but by creating a Value that refers to a custom subclass of ValueSource,
you can map the Value onto any kind of underlying data. you can map the Value onto any kind of underlying data.
Important note! The Value class is not thread-safe! If you're accessing one from
multiple threads, then you'll need to use your own synchronisation around any code
that accesses it.
*/ */
class JUCE_API Value class JUCE_API Value
{ {


Loading…
Cancel
Save