Files
Upsilon/apps/graph/graph_app.h
Romain Goyet 00afebbe2d GraphApp: Use a FunctionStore
Change-Id: Ib75947c40167489726fafc493ccb0ebf2862142b
2016-08-22 14:40:07 +02:00

22 lines
460 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;
GraphController m_graphController;
TabViewController m_tabViewController;
};
#endif