You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #pragma once
-
- #include <JuceHeader.h>
-
- class ScanConfiguration {
- public:
- #ifdef __APPLE__
- juce::AudioUnitPluginFormat auFormat;
- #endif
- juce::VSTPluginFormat vstFormat;
- juce::VST3PluginFormat vst3Format;
-
- bool VSTDefaultPaths;
- juce::FileSearchPath customVSTPaths;
-
- bool VST3DefaultPaths;
- juce::FileSearchPath customVST3Paths;
-
- ScanConfiguration();
-
- juce::FileSearchPath getAUPaths();
-
- juce::FileSearchPath getVSTPaths();
-
- juce::FileSearchPath getVST3Paths();
-
- void restoreFromXml();
- void writeToXml() const;
- };
|