mirror of https://github.com/probonopd/MiniDexed
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
384 B
33 lines
384 B
#include "fx.h"
|
|
|
|
FXBase::FXBase(float32_t sampling_rate) :
|
|
SamplingRate(sampling_rate)
|
|
{
|
|
}
|
|
|
|
FXBase::~FXBase()
|
|
{
|
|
}
|
|
|
|
float32_t FXBase::getSamplingRate() const
|
|
{
|
|
return this->SamplingRate;
|
|
}
|
|
|
|
FXElement::FXElement(float32_t sampling_rate) :
|
|
FXBase(sampling_rate)
|
|
{
|
|
}
|
|
|
|
FXElement::~FXElement()
|
|
{
|
|
}
|
|
|
|
FX::FX(float32_t sampling_rate) :
|
|
FXBase(sampling_rate)
|
|
{
|
|
}
|
|
|
|
FX::~FX()
|
|
{
|
|
}
|
|
|