mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 05:48:25 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@53593 954022d7-b5bf-4e40-9824-e11837661b57
24 lines
417 B
C++
24 lines
417 B
C++
#pragma once
|
|
#ifndef OOX_LIMIT_LINE_RULE_INCLUDE_H_
|
|
#define OOX_LIMIT_LINE_RULE_INCLUDE_H_
|
|
|
|
#include "setter.h"
|
|
#include <string>
|
|
|
|
|
|
namespace OOX
|
|
{
|
|
namespace Limit
|
|
{
|
|
class LineRule : public setter::from<std::string>
|
|
{
|
|
public:
|
|
LineRule();
|
|
|
|
private:
|
|
virtual const std::string no_find() const;
|
|
};
|
|
} // namespace Limit
|
|
} // namespace OOX
|
|
|
|
#endif // OOX_LIMIT_LINE_RULE_INCLUDE_H_
|