mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-21 04:35:36 +08:00
30 lines
490 B
C++
30 lines
490 B
C++
|
|
// auto inserted precompiled begin
|
|
#include "precompiled_odtformat.h"
|
|
// auto inserted precompiled end
|
|
|
|
#include "LineStyle.h"
|
|
|
|
|
|
namespace Odt
|
|
{
|
|
namespace Limit
|
|
{
|
|
LineStyle::LineStyle()
|
|
{
|
|
add("none");
|
|
add("solid");
|
|
add("dotted");
|
|
add("dash");
|
|
add("long-dash");
|
|
add("dot-dash");
|
|
add("dot-dot-dash");
|
|
add("wave");
|
|
}
|
|
|
|
const std::string LineStyle::no_find() const
|
|
{
|
|
return "none";
|
|
}
|
|
} // namespace Limit
|
|
} // namespace Odt
|