Files
Upsilon/apps/sequence/graph/go_to_parameter_controller.h
Émilie Feral 5facbfb8ac [apps/sequence] Specialize sequence go to parameter controller to round
the given abscissa and forbid negative values

Change-Id: Iaae39e575c0e2de4993a558e234717a839905872
2017-03-30 16:43:28 +02:00

19 lines
439 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, float f) override;
};
}
#endif