Updates for changes in client types

nix
Alex Harker 7 years ago
parent f56bd42182
commit 02842c8aec

@ -157,7 +157,7 @@ template <typename Client, class Wrapper>
class RealTime : public SCUnit class RealTime : public SCUnit
{ {
using HostVector = FluidTensorView<float, 1>; using HostVector = FluidTensorView<float, 1>;
using Params = typename Client::Params; using ParamSetType = typename Client::ParamSetType;
// using Client = typename Wrapper::ClientType; // using Client = typename Wrapper::ClientType;
@ -249,8 +249,8 @@ private:
FloatControlsIter mControlsIterator; FloatControlsIter mControlsIterator;
protected: protected:
ParameterSet<Params> mParams; ParamSetType mParams;
Client mClient; Client mClient;
}; };
//////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@ -424,7 +424,7 @@ class FluidSCWrapper : public impl::FluidSCWrapperBase<C>
{ {
public: public:
using Client = C; using Client = C;
using ParameterSetType = ParameterSet<typename C::Params>; using ParameterSetType = typename C::ParamSetType;
FluidSCWrapper() // mParams{*getParamDescriptors()}, //impl::FluidSCWrapperBase<Client,Params>() FluidSCWrapper() // mParams{*getParamDescriptors()}, //impl::FluidSCWrapperBase<Client,Params>()
{ {

Loading…
Cancel
Save