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.
25 lines
276 B
25 lines
276 B
2 years ago
|
#include "fx.h"
|
||
|
|
||
|
FXBase::FXBase(float32_t sampling_rate) :
|
||
|
SamplingRate(sampling_rate)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
FXBase::~FXBase()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
float32_t FXBase::getSamplingRate() const
|
||
|
{
|
||
|
return this->SamplingRate;
|
||
|
}
|
||
|
|
||
|
FX::FX(float32_t sampling_rate) :
|
||
|
FXBase(sampling_rate)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
FX::~FX()
|
||
|
{
|
||
|
}
|