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