Files
Upsilon/apps/probability/app.h
Émilie Feral 23026b6718 [apps/shared] Namespace shared
Change-Id: I6dec7ce900bb4e801a25c567fe5e242cb744cf29
2017-02-13 17:15:06 +01:00

22 lines
409 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 Shared::TextFieldDelegateApp {
public:
App(Container * container);
private:
LawController m_lawController;
StackViewController m_stackViewController;
};
}
#endif