mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
16 lines
263 B
C++
16 lines
263 B
C++
#ifndef PICVIEW_PICVIEW_CONTROLLER_H
|
|
#define PICVIEW_PICVIEW_CONTROLLER_H
|
|
|
|
#include <escher.h>
|
|
#include "pic_view.h"
|
|
|
|
class PicViewController : public ViewController {
|
|
public:
|
|
PicViewController();
|
|
View * view() override;
|
|
private:
|
|
PicView m_view;
|
|
};
|
|
|
|
#endif
|