mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
20 lines
328 B
C++
20 lines
328 B
C++
#include "RestartDefault.h"
|
|
|
|
namespace Odp
|
|
{
|
|
namespace Limit
|
|
{
|
|
RestartDefault::RestartDefault()
|
|
{
|
|
add("never");
|
|
add("always");
|
|
add("whenNotActive");
|
|
add("inherit");
|
|
}
|
|
|
|
const std::string RestartDefault::no_find() const
|
|
{
|
|
return "inherit";
|
|
}
|
|
} // namespace Limit
|
|
} // namespace Odp
|