Files
Upsilon/apps/statistics/store_controller.h
Émilie Feral b17222112a [apps] Change model data -> float pair store.
Change-Id: I72d5291f3168f2588e2a955476724ce95e32e6f5
2017-01-09 15:08:56 +01:00

19 lines
389 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);
void willDisplayCellAtLocation(TableViewCell * cell, int i, int j) override;
};
}
#endif