Support other locales for decimal and list separators (#1060)
* Support other locales for decimal and list seperators * PR fixes
This commit is contained in:
@@ -34,6 +34,7 @@ namespace Graphing
|
||||
virtual ~IParsingOptions() = default;
|
||||
|
||||
virtual void SetFormatType(FormatType type) = 0;
|
||||
virtual void SetLocalizationType(LocalizationType value) = 0;
|
||||
};
|
||||
|
||||
struct IEvalOptions : public NonCopyable, public NonMoveable
|
||||
@@ -49,7 +50,8 @@ namespace Graphing
|
||||
virtual ~IFormatOptions() = default;
|
||||
|
||||
virtual void SetFormatType(FormatType type) = 0;
|
||||
virtual void SetMathMLPrefix(const std::wstring& value) = 0;
|
||||
virtual void SetMathMLPrefix(const std::wstring& value) = 0;
|
||||
virtual void SetLocalizationType(LocalizationType value) = 0;
|
||||
};
|
||||
|
||||
struct IMathSolver : public NonCopyable, public NonMoveable
|
||||
|
Reference in New Issue
Block a user