Audacity 3.2.0
VSTControlGTK.h
Go to the documentation of this file.
1/**********************************************************************
2
3 Audacity: A Digital Audio Editor
4
5 VSTControlGTK.h
6
7 Leland Lucius
8
9**********************************************************************/
10
11#ifndef AUDACITY_VSTCONTROLGTK_H
12#define AUDACITY_VSTCONTROLGTK_H
13
14#include <memory>
15#include "VSTControl.h"
16
17class VSTControl final : public VSTControlBase
18{
19public:
20 VSTControl();
21 virtual ~VSTControl();
22
23 bool Create(wxWindow *parent, VSTLink *link) override;
24
25private:
26 struct Impl;
27 std::unique_ptr<Impl> mImpl;
28};
29
30#endif
virtual ~VSTControl()
bool Create(wxWindow *parent, VSTLink *link) override
std::unique_ptr< Impl > mImpl
Definition: VSTControlGTK.h:26