tracktion-engine 3.0-10-g034fdde4aa5
Tracktion Engine — High level data model for audio applications

« « « Anklang Documentation
Loading...
Searching...
No Matches
tracktion_AutomationTrack.h
Go to the documentation of this file.
1 /*
2 ,--. ,--. ,--. ,--.
3 ,-' '-.,--.--.,--,--.,---.| |,-.,-' '-.`--' ,---. ,--,--, Copyright 2024
4 '-. .-'| .--' ,-. | .--'| /'-. .-',--.| .-. || \ Tracktion Software
5 | | | | \ '-' \ `--.| \ \ | | | |' '-' '| || | Corporation
6 `---' `--' `--`--'`---'`--'`--' `---' `--' `---' `--''--' www.tracktion.com
7
8 Tracktion Engine uses a GPL/commercial licence - see LICENCE.md for details.
9*/
10
11namespace tracktion { inline namespace engine
12{
13
15class AutomationTrack : public Track
16{
17public:
19 ~AutomationTrack() override;
20
21 //==============================================================================
22 bool isAutomationTrack() const override { return true; }
24 bool canContainPlugin (Plugin*) const override { return false; }
25 juce::String getName() const override;
26
27 //==============================================================================
29
31};
32
33}} // namespace tracktion { inline namespace engine
bool isAutomationTrack() const override
Returns true if this is an AutomationTrack.
bool canContainPlugin(Plugin *) const override
Returns true if this track can contain a specific Plugin.
juce::String getSelectableDescription() override
Subclasses must return a description of what they are.
The Tracktion Edit class!
Base class for tracks which contain clips and plugins and can be added to Edit[s].
#define JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(className)