Browse Source

Improved AudioProcessorValueTreeState documentation

tags/2021-05-28
tpoole 9 years ago
parent
commit
0d7a77d8ee
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      modules/juce_audio_processors/utilities/juce_AudioProcessorValueTreeState.h

+ 4
- 3
modules/juce_audio_processors/utilities/juce_AudioProcessorValueTreeState.h View File

@@ -33,14 +33,15 @@
It has its own internal class of parameter object which are linked to values
within its ValueTree, and which are each identified by a string ID.
To use: Create a AudioProcessorValueTreeState, and give it some parameters
using createParameter().
You can get access to the underlying ValueTree object via the state member variable,
so you can add extra properties to it as necessary.
It also provides some utility child classes for connecting parameters directly to
GUI controls like sliders.
To use:
1) Create an AudioProcessorValueTreeState, and give it some parameters using createParameter().
2) Initialise the state member variable with a type name.
*/
class JUCE_API AudioProcessorValueTreeState : private Timer,
private ValueTree::Listener


Loading…
Cancel
Save