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