Add a picture viewer

Change-Id: I35dd150f415119e80f7463515a70e2d9bd058a14
This commit is contained in:
Romain Goyet
2016-08-08 11:46:38 +02:00
parent ada53fed0d
commit 3cd4639f44
10 changed files with 124 additions and 0 deletions

View File

@@ -1,6 +1,15 @@
#include "graph/graph_app.h"
#define USE_PIC_VIEW_APP 0
#if USE_PIC_VIEW_APP
#include "picview/picview_app.h"
#endif
void ion_app() {
#if USE_PIC_VIEW_APP
PicViewApp picViewApp = PicViewApp();
picViewApp.run();
#endif
GraphApp graphApp = GraphApp();
graphApp.run();
}