2020-06-13 10:56:20 +02:00
|
|
|
//
|
|
|
|
// Created by versustune on 09.06.20.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "SynthInstance.h"
|
|
|
|
#include <utility>
|
|
|
|
|
2020-06-13 16:52:16 +02:00
|
|
|
SynthInstance::SynthInstance (std::string processId)
|
2020-06-14 21:14:28 +02:00
|
|
|
: m_processId(std::move(processId))
|
2020-06-13 16:52:16 +02:00
|
|
|
{
|
2020-06-13 10:56:20 +02:00
|
|
|
}
|