Files
Upsilon/apps/shared/new_function_cell.h
Émilie Feral a5d27c1f06 [apps/shared] Move apps/graph/list/new_function_cell to shared folder to
be used by sequence

Change-Id: Ie42a8b6cc60e652ab49379dd72b00f2efdc6ebda
2017-02-13 17:15:07 +01:00

23 lines
429 B
C++

#ifndef SHARED_NEW_FUNCTION_CELL_H
#define SHARED_NEW_FUNCTION_CELL_H
#include <escher.h>
namespace Shared {
class NewFunctionCell : public EvenOddCell {
public:
NewFunctionCell();
void reloadCell() override;
int numberOfSubviews() const override;
View * subviewAtIndex(int index) override;
void layoutSubviews() override;
protected:
virtual const char * text();
PointerTextView m_pointerTextView;
};
}
#endif