go_to_parameter_controller.h
440 Bytes
#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