Files
Upsilon/apps/text_field_delegate_app.h
Émilie Feral 983905af59 [apps] Factorize app classes by creating a text field delegate app
Change-Id: Ic9c1ed5ba6eb620389cbe4a009f703ecbfe98c55
2016-12-19 17:30:29 +01:00

14 lines
431 B
C++

#ifndef APPS_TEXT_FIELD_DELEGATE_APP_H
#define APPS_TEXT_FIELD_DELEGATE_APP_H
#include <escher.h>
#include "expression_text_field_delegate.h"
class TextFieldDelegateApp : public ::App, public ExpressionTextFieldDelegate {
public:
TextFieldDelegateApp(Container * container, ViewController * rootViewController, const char * name = nullptr, const Image * icon = nullptr);
virtual Context * localContext() override;
};
#endif