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