mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
23 lines
380 B
C++
23 lines
380 B
C++
#include "PresetClass.h"
|
|
|
|
namespace Odp
|
|
{
|
|
namespace Limit
|
|
{
|
|
PresetClass::PresetClass()
|
|
{
|
|
add("custom");
|
|
add("entrance");
|
|
add("exit");
|
|
add("emphasis");
|
|
add("motion-path");
|
|
add("ole-action");
|
|
add("media-call");
|
|
}
|
|
|
|
const std::string PresetClass::no_find() const
|
|
{
|
|
return "custom";
|
|
}
|
|
} // namespace Limit
|
|
} // namespace Odp
|