Blame view

build3/apps/statistics/store_controller.h 709 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  #ifndef STATISTICS_STORE_CONTROLLER_H
  #define STATISTICS_STORE_CONTROLLER_H
  
  #include <escher.h>
  #include "store.h"
  #include "../shared/store_controller.h"
  
  namespace Statistics {
  
  class StoreController : public Shared::StoreController {
  public:
    StoreController(Responder * parentResponder, Store * store, ButtonRowController * header);
    void willDisplayCellAtLocation(HighlightCell * cell, int i, int j) override;
  private:
    bool setDataAtLocation(double floatBody, int columnIndex, int rowIndex) override;
    HighlightCell * titleCells(int index) override;
    View * loadView() override;
    void unloadView(View * view) override;
    EvenOddMessageTextCell * m_titleCells[k_numberOfTitleCells];
  };
  
  }
  
  #endif