- reformat to JUCE-Guidelines
- added Matrix => half working ;)
This commit is contained in:
parent
26a2935e1c
commit
ac22ea5e75
58 changed files with 1220 additions and 799 deletions
|
|
@ -3,9 +3,9 @@
|
|||
//
|
||||
|
||||
#include "SynthInstance.h"
|
||||
|
||||
#include <utility>
|
||||
|
||||
SynthInstance::SynthInstance(std::string processId)
|
||||
: m_processId(std::move(processId)) {
|
||||
SynthInstance::SynthInstance (std::string processId)
|
||||
: m_processId (std::move (processId))
|
||||
{
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,18 +5,16 @@
|
|||
#ifndef VENO_SYNTHINSTANCE_H
|
||||
#define VENO_SYNTHINSTANCE_H
|
||||
|
||||
|
||||
#include <string>
|
||||
|
||||
// class that hold all voices, oscillators and other stuff :)
|
||||
class SynthInstance {
|
||||
class SynthInstance
|
||||
{
|
||||
private:
|
||||
std::string m_processId;
|
||||
public:
|
||||
explicit SynthInstance(std::string processId);
|
||||
~SynthInstance() = default;
|
||||
explicit SynthInstance (std::string processId);
|
||||
~SynthInstance () = default;
|
||||
protected:
|
||||
};
|
||||
|
||||
|
||||
#endif //VENO_SYNTHINSTANCE_H
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue