mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-23 07:40:42 +01:00
21 lines
483 B
C++
21 lines
483 B
C++
#ifndef GRAPH_GRAPH_CONTROLLER_H
|
|
#define GRAPH_GRAPH_CONTROLLER_H
|
|
|
|
#include <escher.h>
|
|
#include "graph_view.h"
|
|
#include "../function_store.h"
|
|
|
|
class GraphController : public ViewController {
|
|
public:
|
|
GraphController(Responder * parentResponder, Graph::FunctionStore * functionStore);
|
|
View * view() override;
|
|
const char * title() const override;
|
|
|
|
bool handleEvent(Ion::Events::Event event) override;
|
|
private:
|
|
Responder * tabController() const;
|
|
GraphView m_view;
|
|
};
|
|
|
|
#endif
|