Files
Upsilon/apps/shared/vertical_cursor_view.h
Émilie Feral 7ea0dbeb56 [apps] Shared: Move part of the implementation of TermSumController to
shared (Integral Graph Controller) and improve bound edition in
TermSumController.
2018-01-30 18:19:27 +01:00

17 lines
263 B
C++

#ifndef SHARED_VERTICAL_CURSOR_VIEW_H
#define SHARED_VERTICAL_CURSOR_VIEW_H
#include <escher.h>
namespace Shared {
class VerticalCursorView : public View {
public:
using View::View;
void drawRect(KDContext * ctx, KDRect rect) const override;
};
}
#endif