iPlug2 - C++ Audio Plug-in Framework
Loading...
Searching...
No Matches
IPlugDelegate_select.h
Go to the documentation of this file.
1/*
2 ==============================================================================
3
4 This file is part of the iPlug 2 library. Copyright (C) the iPlug 2 developers.
5
6 See LICENSE.txt for more info.
7
8 ==============================================================================
9*/
10
18#if defined COCOA_EDITOR_DELEGATE
20 using EDITOR_DELEGATE_CLASS = iplug::CocoaEditorDelegate;
21#elif defined WEBVIEW_EDITOR_DELEGATE
23 using EDITOR_DELEGATE_CLASS = iplug::WebViewEditorDelegate;
24#elif defined NO_IGRAPHICS
25 #include "IPlugEditorDelegate.h"
26 using EDITOR_DELEGATE_CLASS = iplug::IEditorDelegate;
27#else
29 using EDITOR_DELEGATE_CLASS = iplug::igraphics::IGEditorDelegate;
30#endif