mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 17:03:15 +08:00
25 lines
399 B
C++
25 lines
399 B
C++
|
|
// auto inserted precompiled begin
|
|
#include "precompiled_odtformat.h"
|
|
// auto inserted precompiled end
|
|
|
|
#include "KeepTogether.h"
|
|
|
|
|
|
namespace Odt
|
|
{
|
|
namespace Limit
|
|
{
|
|
KeepTogether::KeepTogether()
|
|
{
|
|
add("auto");
|
|
add("true");
|
|
add("always");
|
|
}
|
|
|
|
const std::string KeepTogether::no_find() const
|
|
{
|
|
return "auto";
|
|
}
|
|
} // namespace Limit
|
|
} // namespace Odt
|