mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 15:21:39 +08:00
26 lines
390 B
C++
26 lines
390 B
C++
|
|
// auto inserted precompiled begin
|
|
#include "precompiled_odtformat.h"
|
|
// auto inserted precompiled end
|
|
|
|
#include "Fill.h"
|
|
|
|
|
|
namespace Odt
|
|
{
|
|
namespace Limit
|
|
{
|
|
Fill::Fill()
|
|
{
|
|
add("solid");
|
|
add("bitmap");
|
|
add("gradient");
|
|
add("none");
|
|
}
|
|
|
|
const std::string Fill::no_find() const
|
|
{
|
|
return "solid";
|
|
}
|
|
} // namespace Limit
|
|
} // namespace Odt
|