Files
Upsilon/apps/main.cpp
Romain Goyet 3cd4639f44 Add a picture viewer
Change-Id: I35dd150f415119e80f7463515a70e2d9bd058a14
2016-08-08 11:46:38 +02:00

16 lines
278 B
C++

#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();
}