mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 17:03:15 +08:00
29 lines
471 B
C++
29 lines
471 B
C++
|
|
// auto inserted precompiled begin
|
|
#include "precompiled_odtformat.h"
|
|
// auto inserted precompiled end
|
|
|
|
#include "WrapStyle.h"
|
|
|
|
|
|
namespace Odt
|
|
{
|
|
namespace Limit
|
|
{
|
|
WrapStyle::WrapStyle()
|
|
{
|
|
add("none");
|
|
add("left");
|
|
add("right");
|
|
add("parallel");
|
|
add("dynamic");
|
|
add("biggest");
|
|
add("run-through");
|
|
}
|
|
|
|
const std::string WrapStyle::no_find() const
|
|
{
|
|
return "none";
|
|
}
|
|
} // namespace Limit
|
|
} // namespace Odt
|