mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
22 lines
418 B
C++
22 lines
418 B
C++
#ifndef PROBABILITY_PARAMETERS_CONTROLLER_H
|
|
#define PROBABILITY_PARAMETERS_CONTROLLER_H
|
|
|
|
#include <escher.h>
|
|
|
|
namespace Probability {
|
|
|
|
class ParametersController : public ViewController {
|
|
public:
|
|
ParametersController(Responder * parentResponder);
|
|
|
|
View * view() override;
|
|
const char * title() const override;
|
|
bool handleEvent(Ion::Events::Event event) override;
|
|
private:
|
|
SolidColorView m_view;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|