mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 14:22:36 +08:00
24 lines
360 B
C++
24 lines
360 B
C++
|
|
// auto inserted precompiled begin
|
|
#include "precompiled_odtformat.h"
|
|
// auto inserted precompiled end
|
|
|
|
#include "Display.h"
|
|
|
|
|
|
namespace Odt
|
|
{
|
|
namespace Limit
|
|
{
|
|
Display::Display()
|
|
{
|
|
add("true");
|
|
add("none");
|
|
}
|
|
|
|
const std::string Display::no_find() const
|
|
{
|
|
return "true";
|
|
}
|
|
} // namespace Limit
|
|
} // namespace Odt
|