WIP
This commit is contained in:
parent
d735c1d076
commit
26a2935e1c
52 changed files with 1513 additions and 107 deletions
11
Source/Veno/Audio/Synth/SynthInstance.cpp
Normal file
11
Source/Veno/Audio/Synth/SynthInstance.cpp
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
//
|
||||
// Created by versustune on 09.06.20.
|
||||
//
|
||||
|
||||
#include "SynthInstance.h"
|
||||
|
||||
#include <utility>
|
||||
|
||||
SynthInstance::SynthInstance(std::string processId)
|
||||
: m_processId(std::move(processId)) {
|
||||
}
|
||||
22
Source/Veno/Audio/Synth/SynthInstance.h
Normal file
22
Source/Veno/Audio/Synth/SynthInstance.h
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
//
|
||||
// Created by versustune on 09.06.20.
|
||||
//
|
||||
|
||||
#ifndef VENO_SYNTHINSTANCE_H
|
||||
#define VENO_SYNTHINSTANCE_H
|
||||
|
||||
|
||||
#include <string>
|
||||
|
||||
// class that hold all voices, oscillators and other stuff :)
|
||||
class SynthInstance {
|
||||
private:
|
||||
std::string m_processId;
|
||||
public:
|
||||
explicit SynthInstance(std::string processId);
|
||||
~SynthInstance() = default;
|
||||
protected:
|
||||
};
|
||||
|
||||
|
||||
#endif //VENO_SYNTHINSTANCE_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue