mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-20 09:17:23 +01:00
17 lines
269 B
C++
17 lines
269 B
C++
#ifndef SEQUENCE_VERTICAL_CURSOR_VIEW_H
|
|
#define SEQUENCE_VERTICAL_CURSOR_VIEW_H
|
|
|
|
#include <escher.h>
|
|
|
|
namespace Sequence {
|
|
|
|
class VerticalCursorView : public View {
|
|
public:
|
|
using View::View;
|
|
void drawRect(KDContext * ctx, KDRect rect) const override;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|