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

12 lines
195 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)
: m_processId (std::move (processId))
{
2020-06-13 10:56:20 +02:00
}