Files
Upsilon/apps/probability/app.h
Romain Goyet 2905975b43 Add a Probability app
Change-Id: I1c12b1de3cc4a7cf955f6d8389a4fdf69c4bff1c
2016-08-19 16:20:05 +02:00

24 lines
437 B
C++

#ifndef PROBABILITY_PROBABILITY_APP_H
#define PROBABILITY_PROBABILITY_APP_H
#include <escher.h>
#include "law/law_controller.h"
namespace Probability {
class App : public ::App {
public:
App();
protected:
ViewController * rootViewController() override;
private:
LawController m_lawController;
//ListController m_listController;
//GraphController m_graphController;
StackViewController m_stackViewController;
};
}
#endif