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

« « « Anklang Documentation
Loading...
Searching...
No Matches
tracktion_MasterTrack.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
18class MasterTrack : public Track
19{
20public:
23
25 ~MasterTrack() override;
26
28
30 void initialise() override;
32 bool isMasterTrack() const override;
34 juce::String getName() const override;
37
39 bool canContainPlugin (Plugin*) const override;
40
41private:
43};
44
45}} // namespace tracktion { inline namespace engine
The Tracktion Edit class!
A track to represent the master plugins.
bool canContainPlugin(Plugin *) const override
Returns true if this track can contain a specific Plugin.
void initialise() override
Initialises the Track.
juce::String getSelectableDescription() override
Subclasses must return a description of what they are.
bool isMasterTrack() const override
Returns true if this is a MasterTrack.
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)