mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-20 01:08:15 +01:00
access the toolbox from the container Change-Id: I89eb598b4a7d317d70d5a1f13b79422d35438d68
15 lines
252 B
C++
15 lines
252 B
C++
#ifndef PICVIEW_PICVIEW_APP_H
|
|
#define PICVIEW_PICVIEW_APP_H
|
|
|
|
#include <escher.h>
|
|
#include "picview_controller.h"
|
|
|
|
class PicViewApp : public App {
|
|
public:
|
|
PicViewApp(Container * container);
|
|
private:
|
|
PicViewController m_picViewController;
|
|
};
|
|
|
|
#endif
|