mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 15:21:39 +08:00
23 lines
359 B
C++
23 lines
359 B
C++
|
|
// auto inserted precompiled begin
|
|
#include "precompiled_odtformat.h"
|
|
// auto inserted precompiled end
|
|
|
|
#include "Background.h"
|
|
|
|
|
|
namespace Odt
|
|
{
|
|
namespace Limit
|
|
{
|
|
Background::Background()
|
|
{
|
|
add("border");
|
|
}
|
|
|
|
const std::string Background::no_find() const
|
|
{
|
|
return "border";
|
|
}
|
|
} // namespace Limit
|
|
} // namespace Odt
|