Files
Upsilon/apps/graph/graph/cursor_view.h
Romain Goyet 5de28e01db Migrate Kandinsky to C++
Change-Id: I2752a8db84ad0bb817119cf6c2993c1622621150
2016-07-21 13:42:32 +02:00

13 lines
239 B
C++

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