Fix builds for all realtime objects

nix
Alex Harker 7 years ago
parent 02842c8aec
commit 6d9e9d3ffe

@ -1,13 +1,13 @@
// A tool from the FluCoMa project, funded by the European Research Council (ERC) under the European Unions Horizon 2020 research and innovation programme (grant agreement No 725899)
#include <FluidSCWrapper.hpp>
#include <clients/rt/GainClient.hpp>
#include <SC_PlugIn.hpp>
static InterfaceTable *ft;
PluginLoad(FluidGainUgen) {
ft = inTable;
using namespace fluid::client;
makeSCWrapper<GainClient,double,float>("FluidGain", GainParams,ft);
makeSCWrapper<GainClient<float>>("FluidGain", ft);
}

@ -1,5 +1,6 @@
// A tool from the FluCoMa project, funded by the European Research Council (ERC) under the European Unions Horizon 2020 research and innovation programme (grant agreement No 725899)
#include <clients/rt/HPSSClient.hpp>
#include <FluidSCWrapper.hpp>
@ -8,7 +9,7 @@ static InterfaceTable *ft;
PluginLoad(FluidSTFTUGen) {
ft = inTable;
using namespace fluid::client;
makeSCWrapper<HPSSClient,double,float>("FluidHPSS",HPSSParams,ft);
makeSCWrapper<HPSSClient<float>>("FluidHPSS", ft);
}

@ -9,7 +9,7 @@ static InterfaceTable *ft;
PluginLoad(FluidSTFTUGen) {
ft = inTable;
using namespace fluid::client;
makeSCWrapper<NMFMatch,double, float>("FluidNMFMatch",NMFMatchParams,ft);
makeSCWrapper<NMFMatch<float>>("FluidNMFMatch", ft);
}

@ -9,5 +9,5 @@ static InterfaceTable *ft;
PluginLoad(FluidSTFTUGen) {
ft = inTable;
using namespace fluid::client;
makeSCWrapper<BaseSTFTClient,double,float>("FluidSTFTPass",STFTParams,ft);
makeSCWrapper<BaseSTFTClient<float>>("FluidSTFTPass", ft);
}

@ -1,14 +1,14 @@
// A tool from the FluCoMa project, funded by the European Research Council (ERC) under the European Unions Horizon 2020 research and innovation programme (grant agreement No 725899)
#include <clients/rt/SinesClient.hpp>
#include <FluidSCWrapper.hpp>
static InterfaceTable *ft;
PluginLoad(FluidSTFTUGen) {
ft = inTable;
using namespace fluid::client;
makeSCWrapper<SinesClient,double,float>("FluidSines",SinesParams,ft);
makeSCWrapper<SinesClient<float>>("FluidSines", ft);
}

@ -9,5 +9,5 @@ static InterfaceTable *ft;
PluginLoad(FluidSTFTUGen) {
ft = inTable;
using namespace fluid::client;
makeSCWrapper<TransientsSlice,double,float>("FluidTransientSlice",TransientParams,ft);
makeSCWrapper<TransientsSlice<float>>("FluidTransientSlice",ft);
}

Loading…
Cancel
Save