Add TAL-Reverb-II plugin to test
[juce-lv2.git] / juce / source / src / audio / plugin_host / formats / juce_DirectXPluginFormat.h
blobbc9af2304ea279586f3f4aa92818eb65845eba28
1 /*
2 ==============================================================================
4 This file is part of the JUCE library - "Jules' Utility Class Extensions"
5 Copyright 2004-11 by Raw Material Software Ltd.
7 ------------------------------------------------------------------------------
9 JUCE can be redistributed and/or modified under the terms of the GNU General
10 Public License (Version 2), as published by the Free Software Foundation.
11 A copy of the license is included in the JUCE distribution, or can be found
12 online at www.gnu.org/licenses.
14 JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 A PARTICULAR PURPOSE. See the GNU General Public License for more details.
18 ------------------------------------------------------------------------------
20 To release a closed-source product which uses JUCE, commercial licenses are
21 available: visit www.rawmaterialsoftware.com/juce for more information.
23 ==============================================================================
26 #ifndef __JUCE_DIRECTXPLUGINFORMAT_JUCEHEADER__
27 #define __JUCE_DIRECTXPLUGINFORMAT_JUCEHEADER__
29 #include "../juce_AudioPluginFormat.h"
31 #if JUCE_PLUGINHOST_DX && JUCE_WINDOWS
34 // Sorry, this file is just a placeholder at the moment!...
37 //==============================================================================
38 /**
39 Implements a plugin format manager for DirectX plugins.
41 class JUCE_API DirectXPluginFormat : public AudioPluginFormat
43 public:
44 //==============================================================================
45 DirectXPluginFormat();
46 ~DirectXPluginFormat();
48 //==============================================================================
49 String getName() const { return "DirectX"; }
50 void findAllTypesForFile (OwnedArray <PluginDescription>& results, const String& fileOrIdentifier);
51 AudioPluginInstance* createInstanceFromDescription (const PluginDescription& desc);
52 bool fileMightContainThisPluginType (const String& fileOrIdentifier);
53 String getNameOfPluginFromIdentifier (const String& fileOrIdentifier) { return fileOrIdentifier; }
54 FileSearchPath getDefaultLocationsToSearch();
56 private:
57 JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (DirectXPluginFormat);
60 #endif
62 #endif // __JUCE_DIRECTXPLUGINFORMAT_JUCEHEADER__