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