mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-20 14:20:39 +01:00
23 lines
509 B
C++
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
|