mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-18 21:30:38 +01:00
14 lines
431 B
C++
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
|