mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
22 lines
364 B
C++
22 lines
364 B
C++
#include "SmilFillDefault.h"
|
|
|
|
namespace Odp
|
|
{
|
|
namespace Limit
|
|
{
|
|
SmilFillDefault::SmilFillDefault()
|
|
{
|
|
add("remove");
|
|
add("freeze");
|
|
add("hold");
|
|
add("transition");
|
|
add("auto");
|
|
add("inherit");
|
|
}
|
|
|
|
const std::string SmilFillDefault::no_find() const
|
|
{
|
|
return "inherit";
|
|
}
|
|
} // namespace Limit
|
|
} // namespace Odp
|