mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
26 lines
729 B
C++
26 lines
729 B
C++
#ifndef REGRESSION_STORE_CONTROLLER_H
|
|
#define REGRESSION_STORE_CONTROLLER_H
|
|
|
|
#include <escher.h>
|
|
#include "store.h"
|
|
#include "../shared/store_controller.h"
|
|
#include "../shared/store_title_cell.h"
|
|
|
|
namespace Regression {
|
|
|
|
class StoreController : public Shared::StoreController {
|
|
public:
|
|
StoreController(Responder * parentResponder, Store * store, ButtonRowController * header);
|
|
void fillColumnWithFormula(Poincare::Expression * formula) {}
|
|
void willDisplayCellAtLocation(HighlightCell * cell, int i, int j) override;
|
|
private:
|
|
HighlightCell * titleCells(int index) override;
|
|
View * loadView() override;
|
|
void unloadView(View * view) override;
|
|
Shared::StoreTitleCell * m_titleCells[k_numberOfTitleCells];
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|