Files
Upsilon/apps/probability/app.h
Émilie Feral b06c54856f [apps\shared] Create a folder shared/
Change-Id: I94e4474ff5ab3bf9db7afd5b3be57b985755ecdf
2017-02-13 17:15:06 +01:00

22 lines
401 B
C++

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