Files
Upsilon/apps/statistics/store_controller.h
Émilie Feral 35f1404707 [apps/regression] In store controller, improve the titles (with subscript Xi)
Change-Id: I75696c7c8023bfbe8d52c87131456a06d21d05cd
2017-01-27 12:01:34 +01:00

22 lines
540 B
C++

#ifndef STATISTICS_STORE_CONTROLLER_H
#define STATISTICS_STORE_CONTROLLER_H
#include <escher.h>
#include "store.h"
#include "../store_controller.h"
namespace Statistics {
class StoreController : public ::StoreController {
public:
StoreController(Responder * parentResponder, Store * store, HeaderViewController * header);
void willDisplayCellAtLocation(TableViewCell * cell, int i, int j) override;
private:
TableViewCell * titleCells(int index) override;
EvenOddPointerTextCell m_titleCells[k_numberOfTitleCells];
};
}
#endif