Represents one of the nodes, or processors, in an AudioProcessorGraph.
More...
#include <juce_AudioProcessorGraph.h>
Represents one of the nodes, or processors, in an AudioProcessorGraph.
To create a node, call AudioProcessorGraph::addNode().
◆ Ptr
A convenient typedef for referring to a pointer to a node object.
◆ Node()
◆ decReferenceCount()
void ReferenceCountedObject::decReferenceCount |
( |
| ) |
|
|
inlinenoexceptinherited |
Decreases the object's reference count.
If the count gets to zero, the object will be deleted.
References jassert.
◆ decReferenceCountWithoutDeleting()
bool ReferenceCountedObject::decReferenceCountWithoutDeleting |
( |
| ) |
|
|
inlinenoexceptinherited |
Decreases the object's reference count.
If the count gets to zero, the object will not be deleted, but this method will return true, allowing the caller to take care of deletion.
References jassert.
◆ getProcessor()
The actual processor object that this node represents.
◆ getReferenceCount()
int ReferenceCountedObject::getReferenceCount |
( |
| ) |
const |
|
inlinenoexceptinherited |
Returns the object's current reference count.
◆ incReferenceCount()
void ReferenceCountedObject::incReferenceCount |
( |
| ) |
|
|
inlinenoexceptinherited |
Increments the object's reference count.
This is done automatically by the smart pointer, but is public just in case it's needed for nefarious purposes.
◆ prepare()
◆ resetReferenceCount()
void ReferenceCountedObject::resetReferenceCount |
( |
| ) |
|
|
inlineprotectednoexceptinherited |
Resets the reference count to zero without deleting the object.
You should probably never need to use this!
◆ setParentGraph()
◆ unprepare()
void AudioProcessorGraph::Node::unprepare |
( |
| ) |
|
|
private |
◆ AudioProcessorGraph
◆ isPrepared
bool AudioProcessorGraph::Node::isPrepared |
|
private |
◆ nodeId
const uint32 AudioProcessorGraph::Node::nodeId |
The ID number assigned to this node.
This is assigned by the graph that owns it, and can't be changed.
◆ processor
◆ properties
A set of user-definable properties that are associated with this node.
This can be used to attach values to the node for whatever purpose seems useful. For example, you might store an x and y position if your application is displaying the nodes on-screen.
The documentation for this class was generated from the following file: