Files
Upsilon/apps/cursor_view.h
Émilie Feral 71f9913b08 [apps] Move the graph/cursor view to the apps root to be used by other
app (as regression app)

Change-Id: Ie3b7f1028333fe136b0ac761cc728a05a90ffc7f
2017-01-09 15:08:55 +01:00

12 lines
209 B
C++

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