mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 11:47:00 +08:00
27 lines
471 B
C++
27 lines
471 B
C++
|
|
// auto inserted precompiled begin
|
|
#include "precompiled_odtformat.h"
|
|
// auto inserted precompiled end
|
|
|
|
#include "GradientStyle.h"
|
|
|
|
namespace Odt
|
|
{
|
|
namespace Limit
|
|
{
|
|
GradientStyle::GradientStyle()
|
|
{
|
|
add("radial");
|
|
add("linear");
|
|
add("axial");
|
|
add("ellipsoid");
|
|
add("square");
|
|
add("rectangular");
|
|
}
|
|
|
|
const std::string GradientStyle::no_find() const
|
|
{
|
|
return "linear";
|
|
}
|
|
} // namespace Limit
|
|
} // namespace Odt
|