Files
Upsilon/apps/probability/app.h
Émilie Feral a80a58b3a8 [escher] add a modal view controller as instance variable in app
Change-Id: I2d95b34e0242f500c651f7cdec9dbf5d92bdd833
2016-11-04 14:53:11 +01:00

27 lines
463 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();
void setLaw(Law l);
private:
LawController m_lawController;
ParametersController m_parametersController;
StackViewController m_stackViewController;
};
}
#endif