mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
18 lines
248 B
C++
18 lines
248 B
C++
#include "SmilMode.h"
|
|
|
|
namespace Odp
|
|
{
|
|
namespace Limit
|
|
{
|
|
SmilMode::SmilMode()
|
|
{
|
|
add("in");
|
|
add("out");
|
|
}
|
|
|
|
const std::string SmilMode::no_find() const
|
|
{
|
|
return "out";
|
|
}
|
|
} // namespace Limit
|
|
} // namespace Odp
|