Files
Upsilon/apps/probability/app.h
Émilie Feral 00bf0cb92d [apps/probability] Delete the expression contained in law model
Change-Id: Id6a7a83a8c3bc1d1674b496189d18eea84a69eda
2016-12-15 13:51:41 +01:00

28 lines
553 B
C++

#ifndef PROBABILITY_PROBABILITY_APP_H
#define PROBABILITY_PROBABILITY_APP_H
#include <escher.h>
#include <poincare.h>
#include "law_controller.h"
#include "local_context.h"
#include "../expression_text_field_delegate.h"
namespace Probability {
class App : public ::App, public ExpressionTextFieldDelegate {
public:
enum class Law {
Normal,
Student
};
App(Container * container, Context * context);
Context * localContext() override;
private:
LawController m_lawController;
StackViewController m_stackViewController;
};
}
#endif