mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 11:47:00 +08:00
27 lines
411 B
C++
27 lines
411 B
C++
|
|
// auto inserted precompiled begin
|
|
#include "precompiled_odtformat.h"
|
|
// auto inserted precompiled end
|
|
|
|
#include "Align.h"
|
|
|
|
|
|
namespace Odt
|
|
{
|
|
namespace Limit
|
|
{
|
|
Align::Align()
|
|
{
|
|
add("margins");
|
|
add("left");
|
|
add("right");
|
|
add("top");
|
|
add("bottom");
|
|
}
|
|
|
|
const std::string Align::no_find() const
|
|
{
|
|
return "margins";
|
|
}
|
|
} // namespace Limit
|
|
} // namespace Odt
|