Files
Upsilon/apps/interactive_curve_view_range_delegate.h
Émilie Feral affda5eae9 [apps] Modular reimplementation of application models (stores and
ranges) and of curve views/curve view controllers.

Change-Id: If4ca9bf1bec024917ef540a3fc7baefa8700f7ba
2017-01-10 13:35:19 +01:00

12 lines
280 B
C++

#ifndef APPS_INTERACTIVE_CURVE_VIEW_DELEGATE_H
#define APPS_INTERACTIVE_CURVE_VIEW_DELEGATE_H
class InteractiveCurveViewRange;
class InteractiveCurveViewRangeDelegate {
public:
virtual bool didChangeRange(InteractiveCurveViewRange * interactiveCurveViewRange) = 0;
};
#endif