mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-20 09:17:23 +01:00
20 lines
390 B
C++
20 lines
390 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:
|
|
ListController m_listController;
|
|
GraphController m_graphController;
|
|
TabViewController m_tabViewController;
|
|
};
|
|
|
|
#endif
|