mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
22 lines
413 B
C++
22 lines
413 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(const char * text);
|
|
void reloadCell() override;
|
|
int numberOfSubviews() const override;
|
|
View * subviewAtIndex(int index) override;
|
|
void layoutSubviews() override;
|
|
private:
|
|
PointerTextView m_pointerTextView;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|