mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
19 lines
389 B
C++
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
|