mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-20 01:08:15 +01:00
26 lines
598 B
C++
26 lines
598 B
C++
#ifndef CALCULATION_APP_H
|
|
#define CALCULATION_APP_H
|
|
|
|
#include "edit_expression_controller.h"
|
|
#include "local_context.h"
|
|
#include "history_controller.h"
|
|
#include "../shared/text_field_delegate_app.h"
|
|
#include <escher.h>
|
|
|
|
namespace Calculation {
|
|
|
|
class App : public Shared::TextFieldDelegateApp {
|
|
public:
|
|
App(Container * container, Poincare::Context * context);
|
|
Poincare::Context * localContext() override;
|
|
private:
|
|
LocalContext m_localContext;
|
|
CalculationStore m_calculationStore;
|
|
HistoryController m_historyController;
|
|
EditExpressionController m_editExpressionController;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|