Support other locales for decimal and list separators (#1060)

* Support other locales for decimal and list seperators

* PR fixes
This commit is contained in:
Pepe Rivera
2020-03-04 15:15:18 -08:00
committed by GitHub
parent 880072016f
commit f1d53fba61
6 changed files with 43 additions and 6 deletions

View File

@@ -13,6 +13,10 @@ namespace MockGraphingImpl
void SetFormatType(Graphing::FormatType type) override
{
}
void SetLocalizationType(Graphing::LocalizationType value) override
{
}
};
class EvalOptions : public Graphing::IEvalOptions
@@ -46,6 +50,10 @@ namespace MockGraphingImpl
void SetMathMLPrefix(const std::wstring& value) override
{
}
void SetLocalizationType(Graphing::LocalizationType value) override
{
}
};
class MockExpression : public Graphing::IExpression