Files
Upsilon/apps/sequence/graph/go_to_parameter_controller.h
Émilie Feral f0a776a670 [apps] Operations in double when precision required
Change-Id: I7168a861a76178f0bf81841e9378f7399f67914a
2017-08-17 09:31:53 +02:00

19 lines
440 B
C++

#ifndef SEQUENCE_GO_TO_PARAMETER_CONTROLLER_H
#define SEQUENCE_GO_TO_PARAMETER_CONTROLLER_H
#include "../../shared/function_go_to_parameter_controller.h"
namespace Sequence {
class GoToParameterController : public Shared::FunctionGoToParameterController {
public:
using Shared::FunctionGoToParameterController::FunctionGoToParameterController;
private:
bool setParameterAtIndex(int parameterIndex, double f) override;
};
}
#endif