Files
Upsilon/apps/probability/app.h
Émilie Feral 983905af59 [apps] Factorize app classes by creating a text field delegate app
Change-Id: Ic9c1ed5ba6eb620389cbe4a009f703ecbfe98c55
2016-12-19 17:30:29 +01:00

22 lines
394 B
C++

#ifndef PROBABILITY_PROBABILITY_APP_H
#define PROBABILITY_PROBABILITY_APP_H
#include <escher.h>
#include <poincare.h>
#include "law_controller.h"
#include "../text_field_delegate_app.h"
namespace Probability {
class App : public TextFieldDelegateApp {
public:
App(Container * container);
private:
LawController m_lawController;
StackViewController m_stackViewController;
};
}
#endif