mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
20 lines
299 B
C++
20 lines
299 B
C++
#include "CalcMode.h"
|
|
|
|
namespace Odp
|
|
{
|
|
namespace Limit
|
|
{
|
|
CalcMode::CalcMode()
|
|
{
|
|
add("discrete");
|
|
add("linear");
|
|
add("paced");
|
|
add("spline");
|
|
}
|
|
|
|
const std::string CalcMode::no_find() const
|
|
{
|
|
return "discrete";
|
|
}
|
|
} // namespace Limit
|
|
} // namespace Odp
|