Files
Upsilon/apps/shared/cursor_view.h
Léa Saviot e67160b878 [apps/graph] Faster cursor scrolling on device
This commit is quite dirty but works well
2019-09-09 16:56:32 +02:00

16 lines
226 B
C++

#ifndef SHARED_CURSOR_VIEW_H
#define SHARED_CURSOR_VIEW_H
#include <escher.h>
namespace Shared {
class CursorView : public View {
public:
virtual void setCursorFrame(KDRect frame) { View::setFrame(frame); }
};
}
#endif