Files
Upsilon/apps/main.cpp
Romain Goyet 7789123913 [Escher] Add a Container that lets us run multiple apps
Change-Id: I674348ed0ff48934eb248dc48735f4ba13c34692
2016-08-12 15:15:28 +02:00

8 lines
145 B
C++

#include "apps_container.h"
void ion_app() {
AppsContainer container;
container.switchTo(AppsContainer::AppId::Graph);
container.run();
}