mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
12 lines
202 B
C++
12 lines
202 B
C++
#ifndef APPS_CONSTANT_H
|
|
#define APPS_CONSTANT_H
|
|
|
|
#include <escher/text_field.h>
|
|
|
|
class Constant {
|
|
public:
|
|
constexpr static int MaxSerializedExpressionSize = 2*::TextField::maxBufferSize();
|
|
};
|
|
|
|
#endif
|