mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
13 lines
339 B
C++
13 lines
339 B
C++
#ifndef APPS_CONSTANT_H
|
|
#define APPS_CONSTANT_H
|
|
|
|
class Constant {
|
|
public:
|
|
constexpr static int FloatBufferSizeInScientificMode = 14;
|
|
constexpr static int NumberOfDigitsInMantissaInScientificMode = 7;
|
|
constexpr static int FloatBufferSizeInDecimalMode = 11;
|
|
constexpr static int NumberOfDigitsInMantissaInDecimalMode = 4;
|
|
};
|
|
|
|
#endif
|