mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-21 06:40:37 +01:00
20 lines
388 B
C++
20 lines
388 B
C++
#ifndef GRAPH_LIST_PARAM_CONTROLLER_H
|
|
#define GRAPH_LIST_PARAM_CONTROLLER_H
|
|
|
|
#include <escher.h>
|
|
|
|
|
|
class ParameterController : public ViewController {
|
|
public:
|
|
ParameterController(Responder * parentResponder);
|
|
|
|
View * view() override;
|
|
const char * title() const override;
|
|
bool handleEvent(Ion::Events::Event event) override;
|
|
|
|
private:
|
|
SolidColorView m_solidColorView;
|
|
};
|
|
|
|
#endif
|