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