ASPiK SDK
edituidescriptioneditor.h
1 // This file is part of VSTGUI. It is subject to the license terms
2 // in the LICENSE file found in the top-level directory of this
3 // distribution and at http://github.com/steinbergmedia/vstgui/LICENSE
4 
5 #ifndef __edituidescriptioneditor__
6 #define __edituidescriptioneditor__
7 
8 #include "uidescription test.h"
9 
10 namespace VSTGUI {
11 
12 //------------------------------------------------------------------------
14 {
15 public:
16  Steinberg::IPlugView* PLUGIN_API createView (Steinberg::FIDString name) override;
17 
18  static Steinberg::FUnknown* createInstance (void*) { return (Steinberg::Vst::IEditController*)new EditEditorController; }
19  static Steinberg::FUID cid;
20 };
21 
22 //------------------------------------------------------------------------
24 {
25 public:
27 
28  static Steinberg::FUnknown* createInstance (void*) { return (Steinberg::Vst::IAudioProcessor*)new EditEditorProcessor; }
29  static Steinberg::FUID cid;
30 };
31 
32 
33 } // VSTGUI
34 
35 #endif /* edituidescriptioneditor_hpp */
Definition: edituidescriptioneditor.h:23
Definition: customcontrols.cpp:8
Definition: uidescription test.h:15
Definition: uidescription test.h:30
Definition: edituidescriptioneditor.h:13