Files
Upsilon/apps/graph/graph_app.h
Émilie Feral 496a10aebd [Graph/List] Add a stack controller to handle the parameter page
Change-Id: I7d3f916b2f2ae981bc8cd16b70e6e841e687f2e7
2016-09-15 11:04:17 +02:00

23 lines
509 B
C++

#ifndef GRAPH_GRAPH_APP_H
#define GRAPH_GRAPH_APP_H
#include <escher.h>
#include "function_store.h"
#include "graph/graph_controller.h"
#include "list/list_controller.h"
class GraphApp : public ::App {
public:
GraphApp();
protected:
ViewController * rootViewController() override;
private:
Graph::FunctionStore m_functionStore;
ListController m_listController;
StackViewController m_listStackViewController;
GraphController m_graphController;
TabViewController m_tabViewController;
};
#endif