The wrapper now takes care of processing type - all objects updated to fit the new design
parent
6d9e9d3ffe
commit
481dd955ba
@ -1,10 +1,12 @@
|
|||||||
|
|
||||||
#include <clients/nrt/NMFClient.hpp>
|
#include <clients/nrt/NMFClient.hpp>
|
||||||
#include <FluidSCWrapper.hpp>
|
#include <FluidSCWrapper.hpp>
|
||||||
|
|
||||||
static InterfaceTable *ft;
|
static InterfaceTable *ft;
|
||||||
|
|
||||||
PluginLoad(OfflineFluidDecompositionUGens) {
|
PluginLoad(OfflineFluidDecompositionUGens)
|
||||||
|
{
|
||||||
ft = inTable;
|
ft = inTable;
|
||||||
using namespace fluid::client;
|
using namespace fluid::client;
|
||||||
makeSCWrapper<NMFClient,double,float>("BufNMF",NMFParams, ft);
|
makeSCWrapper<NMFClient>("BufNMF", ft);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,11 +1,13 @@
|
|||||||
|
|
||||||
#include <clients/nrt/FluidNRTClientWrapper.hpp>
|
#include <clients/nrt/FluidNRTClientWrapper.hpp>
|
||||||
#include <clients/rt/TransientClient.hpp>
|
#include <clients/rt/TransientClient.hpp>
|
||||||
#include <FluidSCWrapper.hpp>
|
#include <FluidSCWrapper.hpp>
|
||||||
|
|
||||||
static InterfaceTable *ft;
|
static InterfaceTable *ft;
|
||||||
|
|
||||||
PluginLoad(OfflineFluidDecompositionUGens) {
|
PluginLoad(OfflineFluidDecompositionUGens)
|
||||||
|
{
|
||||||
ft = inTable;
|
ft = inTable;
|
||||||
using namespace fluid::client;
|
using namespace fluid::client;
|
||||||
makeSCWrapper<NRTTransients,double,float>("BufTransients",NRTTransientParams,ft);
|
makeSCWrapper<NRTTransients>("BufTransients", ft);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue