reVeno/Source/Veno/Audio/Synth/SynthInstance.cpp

12 lines
193 B
C++
Raw Normal View History

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