mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
22 lines
401 B
C++
22 lines
401 B
C++
#ifndef PROBABILITY_PROBABILITY_APP_H
|
|
#define PROBABILITY_PROBABILITY_APP_H
|
|
|
|
#include <escher.h>
|
|
#include <poincare.h>
|
|
#include "law_controller.h"
|
|
#include "../shared/text_field_delegate_app.h"
|
|
|
|
namespace Probability {
|
|
|
|
class App : public TextFieldDelegateApp {
|
|
public:
|
|
App(Container * container);
|
|
private:
|
|
LawController m_lawController;
|
|
StackViewController m_stackViewController;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|