Files
Upsilon/apps/shared/interactive_curve_view_range_delegate.cpp
Gabriel Ozouf 1a5661fd4c [apps/range_parameter_controller] Remove YAuto
This allows for a great deal of simplifications in the class
RangeParamterController.

Change-Id: I5de55d4e8e1f598eb13b08fb8f042907f55b2fa8
2020-11-04 15:58:08 +01:00

15 lines
426 B
C++

#include "interactive_curve_view_range_delegate.h"
#include "interactive_curve_view_range.h"
#include <cmath>
#include <float.h>
namespace Shared {
bool InteractiveCurveViewRangeDelegate::didChangeRange(InteractiveCurveViewRange * interactiveCurveViewRange) {
/*TODO : De we want to keep this method ?
* We might want to put some computations in here, like the new Auto and Normailzed statuses. */
return false;
}
}