mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
18 lines
257 B
C++
18 lines
257 B
C++
#include "Additive.h"
|
|
|
|
namespace Odp
|
|
{
|
|
namespace Limit
|
|
{
|
|
Additive::Additive()
|
|
{
|
|
add("sum");
|
|
add("replace");
|
|
}
|
|
|
|
const std::string Additive::no_find() const
|
|
{
|
|
return "replace";
|
|
}
|
|
} // namespace Limit
|
|
} // namespace Odp
|