Files
Upsilon/apps/statistics/store_controller.h
Émilie Feral e422228cc1 [apps/statistics][apps/regression] Add an header in the store controller
for rendering purpose

Change-Id: I888247e051e4c04b8f0e132af33cdbae52ba46e1
2017-01-27 11:15:21 +01:00

19 lines
420 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;
};
}
#endif