VST3: prevent plugin copy-construction

This commit is contained in:
Robin Gareus
2020-09-24 15:58:06 +02:00
parent c51e3ac7c7
commit 3e209bfd33

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 ();