Split communication/vst2.h into common and VST2

So we can reuse the generic bits for our VST3 implementation.
This commit is contained in:
Robbert van der Helm
2020-11-29 13:54:33 +01:00
parent 46bc0301af
commit 2fbd14908a
8 changed files with 366 additions and 344 deletions
-2
View File
@@ -21,8 +21,6 @@
#include <boost/process/io.hpp>
#include <boost/process/start_dir.hpp>
#include "../common/communication/vst2.h"
namespace bp = boost::process;
namespace fs = boost::filesystem;
+3
View File
@@ -25,6 +25,9 @@
#include <boost/process/child.hpp>
#include <thread>
// TODO: Those host process implementation now directly uses the Vst2Sockets and
// thus requires `communication/vst2.h`. We should create a simple common
// interface for this instead.
#include "../common/communication/vst2.h"
#include "../common/logging.h"
#include "utils.h"