Files
Upsilon/apps/picview/picview_app.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

12 lines
199 B
C++

#include "picview_app.h"
PicViewApp::PicViewApp() :
App(),
m_picViewController(PicViewController(this))
{
}
ViewController * PicViewApp::rootViewController() {
return &m_picViewController;
}