| 8 | #include "PluginProcessor.h" |
| 9 | |
| 10 | SourceAudioManager::SourceAudioManager(NeuralNoteAudioProcessor* inProcessor) |
| 11 | : mProcessor(inProcessor) |
| 12 | , mThumbnailCache(1) |
| 13 | , mThumbnail(mSourceSamplesPerThumbnailSample, mThumbnailFormatManager, mThumbnailCache) |
| 14 | { |
| 15 | mProcessor->addListenerToStateValueTree(this); |
| 16 | jassert(mProcessor->getValueTree().hasProperty(NnId::SourceAudioNativeSrPathId)); |
| 17 | } |
| 18 | |
| 19 | SourceAudioManager::~SourceAudioManager() |
| 20 | { |
nothing calls this directly
no test coverage detected