Numworks Epsilon  1.4.1
Graphing Calculator Operating System
pic_view.h
Go to the documentation of this file.
1 #ifndef PICVIEW_PIC_VIEW_H
2 #define PICVIEW_PIC_VIEW_H
3 
4 #include <escher.h>
5 
6 class PicView : public View {
7 public:
8  PicView();
9  void drawRect(KDContext * ctx, KDRect rect) const override;
10 };
11 
12 #endif
void drawRect(KDContext *ctx, KDRect rect) const override
Definition: pic_view.cpp:10
PicView()
Definition: pic_view.cpp:4
Definition: rect.h:26
Definition: view.h:23