22 lines
294 B
C++
22 lines
294 B
C++
//
|
|
// Created by versustune on 13.06.20.
|
|
//
|
|
|
|
#include "ModulateValue.h"
|
|
|
|
ModulateValue::ModulateValue (const std::string& name, const std::string& processId)
|
|
{
|
|
m_name = name;
|
|
m_processId = processId;
|
|
}
|
|
|
|
void ModulateValue::addValue (float d)
|
|
{
|
|
|
|
}
|
|
|
|
ModulateValue::~ModulateValue ()
|
|
{
|
|
|
|
}
|