Files
Upsilon/apps/main.cpp
Romain Goyet 173c0249a2 [apps] Split the AppsContainer
Most classes who use AppsContainer don't need to know its whole memory
layout. Let's split AppsContainer in two, and only run will use complete
version.
2017-09-20 11:18:39 +02:00

8 lines
108 B
C++

#include "apps_container_storage.h"
AppsContainerStorage container;
void ion_app() {
container.run();
}