mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-18 21:30:38 +01:00
20 lines
398 B
C++
20 lines
398 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:
|
|
GraphController m_graphViewController;
|
|
ListController m_listViewController;
|
|
TabViewController m_tabViewController;
|
|
};
|
|
|
|
#endif
|