13
0

VST3: prevent plugin copy-construction

This commit is contained in:
Robin Gareus 2020-09-24 15:58:06 +02:00
parent c51e3ac7c7
commit 3e209bfd33
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -140,7 +140,9 @@ public:
void process (float** ins, float** outs, uint32_t n_samples);
private:
void init ();
/* prevent copy construction */
VST3PI (const VST3PI&);
void terminate ();
bool connect_components ();
bool disconnect_components ();