mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-20 01:08:15 +01:00
ranges) and of curve views/curve view controllers. Change-Id: If4ca9bf1bec024917ef540a3fc7baefa8700f7ba
12 lines
280 B
C++
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
|