[shared] Clean unused classes

This commit is contained in:
Émilie Feral
2019-03-11 17:19:06 +01:00
parent 58f9a59d6e
commit 3ce406fde1
39 changed files with 5 additions and 2600 deletions

View File

@@ -1,23 +0,0 @@
#ifndef SHARED_FUNCTION_GO_TO_PARAMETER_CONTROLLER_H
#define SHARED_FUNCTION_GO_TO_PARAMETER_CONTROLLER_H
#include "go_to_parameter_controller.h"
#include "function.h"
namespace Shared {
class FunctionGoToParameterController : public GoToParameterController {
public:
FunctionGoToParameterController(Responder * parentResponder, InputEventHandlerDelegate * inputEventHandlerDelegate, InteractiveCurveViewRange * graphRange, CurveViewCursor * cursor, I18n::Message symbol);
const char * title() override;
void setFunction(Function * function);
protected:
bool setParameterAtIndex(int parameterIndex, double f) override;
Function * m_function;
private:
double parameterAtIndex(int index) override;
};
}
#endif