mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 13:24:03 +08:00
23 lines
373 B
C++
23 lines
373 B
C++
|
|
// auto inserted precompiled begin
|
|
#include "precompiled_odtformat.h"
|
|
// auto inserted precompiled end
|
|
|
|
#include "StrokeLineJoin.h"
|
|
|
|
|
|
namespace Odt
|
|
{
|
|
namespace Limit
|
|
{
|
|
StrokeLineJoin::StrokeLineJoin()
|
|
{
|
|
add("miter");
|
|
}
|
|
|
|
const std::string StrokeLineJoin::no_find() const
|
|
{
|
|
return "miter";
|
|
}
|
|
} // namespace Limit
|
|
} // namespace Odt
|