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