reVeno/Source/Veno/Core/AudioConfig.h

39 lines
807 B
C
Raw Normal View History

2020-04-03 13:23:19 +02:00
//
// Created by versustune on 22.03.20.
//
#ifndef VENO_AUDIOCONFIG_H
#define VENO_AUDIOCONFIG_H
#include "JuceHeader.h"
/**
* holds SampleRate and other needed sound information's :)
*/
class AudioConfig {
private:
static std::shared_ptr<AudioConfig> m_instance;
float m_sampleRate = 44100;
float m_bufferSize = 512; //maybe we need that... but this will update always!
bool m_needToReInit = false; //this is to reInit the Oscillators, ADSR and other stuff
2020-04-03 13:23:19 +02:00
public:
static std::shared_ptr<AudioConfig> getInstance();
float getSampleRate();
void setSampleRate(float _sampleRate);
float getBufferSize();
void setBufferSize(float _bufferSize);
bool isNeedToReInit();
void setNeedToReInit(bool _needToReInit);
2020-04-03 13:23:19 +02:00
protected:
};
#endif //VENO_AUDIOCONFIG_H