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