mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-21 02:22:41 +08:00
24 lines
389 B
C++
24 lines
389 B
C++
#pragma once
|
|
#ifndef ODT_LIMIT_REL_INCLUDE_H_
|
|
#define ODT_LIMIT_REL_INCLUDE_H_
|
|
|
|
#include "setter.h"
|
|
#include <string>
|
|
|
|
|
|
namespace Odt
|
|
{
|
|
namespace Limit
|
|
{
|
|
class Rel : public setter::from<std::string>
|
|
{
|
|
public:
|
|
Rel();
|
|
|
|
private:
|
|
virtual const std::string no_find() const;
|
|
};
|
|
} // namespace Limit
|
|
} // namespace Odt
|
|
|
|
#endif // ODT_LIMIT_REL_INCLUDE_H_
|