Files
Upsilon/apps/probability/app.h
Émilie Feral 30f37213d1 [escher][apps] add pointer to the container from the app and a method to
access the toolbox from the container

Change-Id: I89eb598b4a7d317d70d5a1f13b79422d35438d68
2016-11-10 10:55:15 +01:00

27 lines
484 B
C++

#ifndef PROBABILITY_PROBABILITY_APP_H
#define PROBABILITY_PROBABILITY_APP_H
#include <escher.h>
#include "law/law_controller.h"
#include "parameters/parameters_controller.h"
namespace Probability {
class App : public ::App {
public:
enum class Law {
Normal,
Student
};
App(Container * container);
void setLaw(Law l);
private:
LawController m_lawController;
ParametersController m_parametersController;
StackViewController m_stackViewController;
};
}
#endif