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