Files
Upsilon/apps/graph/graph_app.h
Romain Goyet 682c3bbc20 App: Move the app in the apps/ folder
Change-Id: I9c6a3eb58c718f1c796652e94534b53a2a302f8b
2016-06-20 18:04:31 +02:00

20 lines
398 B
C++

#ifndef GRAPH_GRAPH_APP_H
#define GRAPH_GRAPH_APP_H
#include <escher.h>
#include "graph/graph_controller.h"
#include "list/list_controller.h"
class GraphApp : public App {
public:
GraphApp();
protected:
ViewController * rootViewController() override;
private:
GraphController m_graphViewController;
ListController m_listViewController;
TabViewController m_tabViewController;
};
#endif