mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-28 01:59:59 +01:00
access the toolbox from the container Change-Id: I89eb598b4a7d317d70d5a1f13b79422d35438d68
27 lines
484 B
C++
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
|