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